Skip to content

Commit 64a58f2

Browse files
committed
add mail_user.disableindexer-worker column. fixes #3108
1 parent 6adf9d2 commit 64a58f2

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

install/sql/incremental/upd_dev_collection.sql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,6 @@ UPDATE `mail_user` set `disabledoveadm` = 'n';
2929

3030
-- add disablequota-status for quota-status policy daemon
3131
ALTER TABLE `mail_user` ADD `disablequota-status` ENUM('n','y') CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'n' AFTER `disabledoveadm`;
32+
33+
-- add disableindexer-worker for solr search
34+
ALTER TABLE `mail_user` ADD `disableindexer-worker` ENUM('n','y') CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'n' AFTER `disablequota-status`;

install/sql/ispconfig3.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1063,6 +1063,7 @@ CREATE TABLE `mail_user` (
10631063
`disablelmtp` enum('n','y') NOT NULL default 'n',
10641064
`disabledoveadm` enum('n','y') NOT NULL default 'n',
10651065
`disablequota-status` enum('n','y') NOT NULL default 'n',
1066+
`disableindexer-worker` enum('n','y') NOT NULL default 'n',
10661067
`last_quota_notification` date NULL default NULL,
10671068
`backup_interval` VARCHAR( 255 ) NOT NULL default 'none',
10681069
`backup_copies` INT NOT NULL DEFAULT '1',

0 commit comments

Comments
 (0)