piler/util/db-upgrade-0.1.24-vs-1.1.0.sql
2014-08-19 11:15:09 +02:00

49 lines
2.1 KiB
SQL

alter table `user_settings` add column `ga_enabled` int default 0;
alter table `user_settings` add column `ga_secret` varchar(255) default null;
create index metadata_idx9 on metadata(`sent`);
alter table archiving_rule change column `from` `from` varchar(128) default null;
alter table archiving_rule change column `to` `to` varchar(128) default null;
alter table archiving_rule change column `subject` `subject` varchar(128) default null;
alter table retention_rule change column `from` `from` varchar(128) default null;
alter table retention_rule change column `to` `to` varchar(128) default null;
alter table retention_rule change column `subject` `subject` varchar(128) default null;
alter table archiving_rule add column `attachment_name` varchar(128) default null;
alter table retention_rule add column `attachment_name` varchar(128) default null;
alter table ldap add column ldap_mail_attr varchar(128) default null;
alter table ldap add column ldap_account_objectclass varchar(128) default null;
alter table ldap add column ldap_distributionlist_attr varchar(128) default null;
alter table ldap add column ldap_distributionlist_objectclass varchar(128) default null;
alter table google change column id id char(32) not null;
alter table google_imap change column id id char(32) not null primary key;
create table if not exists `autosearch` (
`id` int not null auto_increment primary key,
`query` varchar(512) not null
) Engine=InnoDB;
alter table `counter` add column `stored_size` bigint unsigned default 0;
create unique index `entry` on archiving_rule (`domain`,`from`,`to`,`subject`,`_size`,`size`,`attachment_name`,`attachment_type`,`_attachment_size`,`attachment_size`,`spam`);
create unique index `entry` on retention_rule (`domain`,`from`,`to`,`subject`,`_size`,`size`,`attachment_name`,`attachment_type`,`_attachment_size`,`attachment_size`,`spam`);
-- 2014.07.05
drop table if exists `group_user`;
create table if not exists `group_user` (
`id` bigint unsigned not null,
`email` char(128) not null,
key `group_user_idx` (`id`),
key `group_user_idx2` (`email`)
) ENGINE=InnoDB;