diff options
Diffstat (limited to 'db/old_migrations/patch-monitor-add-resend-interval.sql')
-rw-r--r-- | db/old_migrations/patch-monitor-add-resend-interval.sql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/db/old_migrations/patch-monitor-add-resend-interval.sql b/db/old_migrations/patch-monitor-add-resend-interval.sql new file mode 100644 index 0000000..8e28bf6 --- /dev/null +++ b/db/old_migrations/patch-monitor-add-resend-interval.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 resend_interval INTEGER default 0 not null; + +ALTER TABLE heartbeat + ADD down_count INTEGER default 0 not null; + +COMMIT; |