Fix null pointer dereference when sending a mail to validate the subscription to...
[platal.git] / upgrade / 1.1.4 / 11_groups.sql
CommitLineData
efef6e67 1ALTER TABLE group_members ADD COLUMN flags SET('notify') NOT NULL DEFAULT '';
ed3c2129
SJ
2ALTER TABLE groups MODIFY COLUMN flags SET('wiki_desc','notif_unsub','has_ml', 'notify_all') NOT NULL DEFAULT 'notify_all';
3UPDATE groups SET flags = CONCAT(flags, ',', 'notify_all') WHERE NOT FIND_IN_SET('notify_all', flags);
efef6e67
SJ
4
5-- vim:set syntax=mysql: