You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
355 B
10 lines
355 B
2 years ago
|
-- You should not modify if this have pushed to Github, unless it does serious wrong with the db.
|
||
|
BEGIN TRANSACTION;
|
||
|
|
||
|
-- 999 characters. https://stackoverflow.com/questions/46134830/maximum-length-for-cron-job
|
||
|
ALTER TABLE maintenance ADD cron TEXT;
|
||
|
ALTER TABLE maintenance ADD timezone VARCHAR(255);
|
||
|
ALTER TABLE maintenance ADD duration INTEGER;
|
||
|
|
||
|
COMMIT;
|