summaryrefslogtreecommitdiffstats
path: root/db/old_migrations/patch-monitor-basic-auth.sql
blob: de4bdefd9da0b0977ad7c32dc514081cc0d756b9 (plain)
1
2
3
4
5
6
7
8
9
10
-- You should not modify if this have pushed to Github, unless it does serious wrong with the db.
BEGIN TRANSACTION;

ALTER TABLE monitor
    ADD basic_auth_user TEXT default null;

ALTER TABLE monitor
    ADD basic_auth_pass TEXT default null;

COMMIT;