Fix missing DB patch and use DATETIME as column format

This commit is contained in:
OidaTiftla
2022-01-24 21:59:25 +01:00
parent 30ce53f57c
commit f390a8caf1
3 changed files with 13 additions and 5 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 heartbeat
ADD last_notified_time DATETIME default null;
COMMIT;