add timer migrations

This commit is contained in:
lyx0 2022-08-22 02:12:19 +02:00
parent feea944f64
commit 53045e1b20
2 changed files with 8 additions and 0 deletions

View file

@ -0,0 +1 @@
DROP TABLE IF EXISTS timers;

View file

@ -0,0 +1,7 @@
CREATE TABLE IF NOT EXISTS timers (
id bigserial PRIMARY KEY,
name text NOT NULL,
text text NOT NULL,
channel text NOT NULL,
repeat text NOT NULL
);