blob: d4d13aab1b2678914b04b7c761589736d514f0b3 (
plain)
1
2
3
4
5
6
7
|
-- You should not modify if this have pushed to Github, unless it does serious wrong with the db.
BEGIN TRANSACTION;
ALTER TABLE notification
ADD is_default BOOLEAN default 0 NOT NULL;
COMMIT;
|