Try to improve the performance of end-of-month session cleanup.
[platal.git] / upgrade / 1.1.10 / 02_add_group_disable_global_mails.sql
1 ALTER TABLE groups ADD COLUMN disable_mails int(1) NOT NULL DEFAULT 1;
2 UPDATE groups SET disable_mails = 0;
3
4 -- vim:set syntax=mysql: