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