diff options
Diffstat (limited to 'db/old_migrations/patch-added-json-query.sql')
-rw-r--r-- | db/old_migrations/patch-added-json-query.sql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/db/old_migrations/patch-added-json-query.sql b/db/old_migrations/patch-added-json-query.sql new file mode 100644 index 0000000..d5b7f1a --- /dev/null +++ b/db/old_migrations/patch-added-json-query.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; + +ALTER TABLE monitor + ADD json_path TEXT; + +ALTER TABLE monitor + ADD expected_value VARCHAR(255); + +COMMIT; |