mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-29 19:14:22 -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;
|