event_parser WIP: compiles successfully

This commit is contained in:
Sean McNamara
2022-11-30 09:28:31 -05:00
parent 042456eced
commit c5c64d6772
7 changed files with 68 additions and 103 deletions

View File

@ -1,5 +1,6 @@
CREATE DATABASE IF NOT EXISTS reminders;
SET SQL_MODE='ALLOW_INVALID_DATES';
SET FOREIGN_KEY_CHECKS=0;
USE reminders;
@ -128,7 +129,7 @@ CREATE TABLE reminders.reminders (
`time` INT UNSIGNED DEFAULT 0 NOT NULL,
`interval` INT UNSIGNED DEFAULT NULL,
expires TIMESTAMP DEFAULT NULL,
expires TIMESTAMP NULL DEFAULT NULL,
enabled BOOLEAN DEFAULT 1 NOT NULL,