2013-10-16 14:55:17 +02:00
|
|
|
|
|
|
|
alter table `user_settings` add column `ga_enabled` int default 0;
|
|
|
|
alter table `user_settings` add column `ga_secret` varchar(255) default null;
|
|
|
|
|
2013-10-19 10:39:10 +02:00
|
|
|
create index metadata_idx9 on metadata(`sent`);
|
|
|
|
|
2013-11-11 11:34:00 +01:00
|
|
|
alter table archiving_rule add column `attachment_name` varchar(128) default null;
|
|
|
|
alter table retention_rule add column `attachment_name` varchar(128) default null;
|
2013-10-19 10:39:10 +02:00
|
|
|
|
2013-11-11 11:48:13 +01:00
|
|
|
alter table archiving_rule drop index `from`;
|
|
|
|
create unique index `entry` on archiving_rule (`domain`,`from`,`to`,`subject`,`_size`,`size`,`attachment_name`,`attachment_type`,`_attachment_size`,`attachment_size`,`spam`);
|
|
|
|
|
|
|
|
alter table retention_rule drop index `entry`;
|
|
|
|
create unique index `entry` on retention_rule (`domain`,`from`,`to`,`subject`,`_size`,`size`,`attachment_name`,`attachment_type`,`_attachment_size`,`attachment_size`,`spam`);
|
|
|
|
|