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

ALTER TABLE monitor
    ADD tls_ca TEXT default null;

ALTER TABLE monitor
    ADD tls_cert TEXT default null;

ALTER TABLE monitor
    ADD tls_key TEXT default null;

COMMIT;