actual-server/migrations/1597756566448_rules.sql
2022-03-31 13:19:08 -04:00

11 lines
157 B
SQL

BEGIN TRANSACTION;
CREATE TABLE rules
(id TEXT PRIMARY KEY,
stage TEXT,
conditions TEXT,
actions TEXT,
tombstone INTEGER DEFAULT 0);
COMMIT;