feat: Add timeoutMs field

This commit is contained in:
JinhyeokLee
2022-09-30 21:51:49 +09:00
parent c3eef28443
commit 76ef46740a
5 changed files with 28 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
-- You should not modify if this have pushed to Github, unless it does serious wrong with the db.
BEGIN TRANSACTION;
ALTER TABLE monitor
ADD timeout_ms INTEGER default 0 not null;
COMMIT;