actual-server/migrations/1597756566448_rules.sql

11 lines
157 B
MySQL
Raw Permalink Normal View History

2022-03-31 17:19:08 +00:00
BEGIN TRANSACTION;
CREATE TABLE rules
(id TEXT PRIMARY KEY,
stage TEXT,
conditions TEXT,
actions TEXT,
tombstone INTEGER DEFAULT 0);
COMMIT;