summaryrefslogtreecommitdiffstats
path: root/db/old_migrations/patch-add-description-monitor.sql
blob: da1aa55bc2538b7b091756cc9dbf0183db633c66 (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 monitor
    ADD description TEXT default null;

COMMIT;