Add Transaction Properties #15

Merged
andrewlalis merged 18 commits from transaction-properties into main 2024-02-04 04:31:04 +00:00
1 changed files with 8 additions and 0 deletions
Showing only changes of commit 1cdadc9fc4 - Show all commits

View File

@ -173,3 +173,11 @@ CREATE TABLE account_history_item_balance_record (
FOREIGN KEY (record_id) REFERENCES balance_record(id)
ON UPDATE CASCADE ON DELETE CASCADE
);
/* DEFAULT ENTITIES */
INSERT INTO transaction_category (name, color) VALUES
('Food', '0dba0d'),
('Travel', '3ec0f0'),
('Utilities', '4137bf'),
('Housing', 'e6cf3c'),
('Entertainment', 'e01e1b');