summaryrefslogtreecommitdiffstats
path: root/db/old_migrations/patch9.sql
diff options
context:
space:
mode:
Diffstat (limited to 'db/old_migrations/patch9.sql')
-rw-r--r--db/old_migrations/patch9.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/db/old_migrations/patch9.sql b/db/old_migrations/patch9.sql
new file mode 100644
index 0000000..d4d13aa
--- /dev/null
+++ b/db/old_migrations/patch9.sql
@@ -0,0 +1,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;