Use SQLx migrations

This commit is contained in:
jude
2023-03-24 11:11:51 +00:00
parent d70fb24eb1
commit 3ef8584189
10 changed files with 41 additions and 53 deletions

View File

@ -0,0 +1,2 @@
ALTER TABLE reminders RENAME COLUMN `interval` TO `interval_seconds`;
ALTER TABLE reminders ADD COLUMN `interval_months` INT UNSIGNED DEFAULT NULL;