admin_transaction_overrides
This data as json
0 records
CREATE TABLE admin_transaction_overrides (
id INTEGER PRIMARY KEY AUTOINCREMENT,
transaction_id TEXT NOT NULL,
override_category TEXT,
override_payee TEXT,
override_amount INTEGER,
notes TEXT,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);