diff options
Diffstat (limited to 'db/old_migrations/patch2.sql')
-rw-r--r-- | db/old_migrations/patch2.sql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/db/old_migrations/patch2.sql b/db/old_migrations/patch2.sql new file mode 100644 index 0000000..2f34e29 --- /dev/null +++ b/db/old_migrations/patch2.sql @@ -0,0 +1,10 @@ +-- You should not modify if this have pushed to Github, unless it does serious wrong with the db. +BEGIN TRANSACTION; + +CREATE TABLE monitor_tls_info ( + id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, + monitor_id INTEGER NOT NULL, + info_json TEXT +); + +COMMIT; |