blob: d5b7f1a8f421ac9b757c346c5144492a6c28fad3 (
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 json_path TEXT;
ALTER TABLE monitor
ADD expected_value VARCHAR(255);
COMMIT;
|