Don't send non-interval disabled reminders

Skip the sending logic as some users use disabled one-time reminders as presets
This commit is contained in:
jude
2022-08-04 19:06:29 +01:00
parent 7b6e967a5d
commit 25b84880a5
4 changed files with 14 additions and 4 deletions

View File

@ -157,4 +157,9 @@ CREATE TABLE events (
FOREIGN KEY (reminder_id) REFERENCES reminders_new(id) ON DELETE SET NULL
);
DROP TABLE reminders;
DROP TABLE embed_fields;
RENAME TABLE reminders_new TO reminders;
RENAME TABLE embed_fields_new TO embed_fields;
SET FOREIGN_KEY_CHECKS = 1;