fix: Fixed the dbTest units so they work (#6293)

* fix: Fixed the dbTest units so they work

* fix schema, should now pass
This commit is contained in:
Neil Lathwood
2017-03-29 22:13:30 +01:00
committed by Tony Murray
parent 962c47168c
commit cf509f138b
7 changed files with 13 additions and 6 deletions

3
sql-schema/183.sql Normal file
View File

@@ -0,0 +1,3 @@
ALTER TABLE `users` CHANGE `created_at` `created_at` TIMESTAMP NOT NULL DEFAULT '1970-01-02 00:00:01';
ALTER TABLE `eventlog` CHANGE `datetime` `datetime` DATETIME NOT NULL DEFAULT '1970-01-02 00:00:01';
ALTER TABLE `alert_schedule` CHANGE `start` `start` DATETIME NOT NULL DEFAULT '1970-01-02 00:00:01', CHANGE `end` `end` DATETIME NOT NULL DEFAULT '1970-01-02 00:00:01';