mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 12:43:09 -05:00
11 lines
157 B
SQL
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;
|