budgets
This data as json
0 records
CREATE TABLE budgets (
id INTEGER PRIMARY KEY AUTOINCREMENT,
month TEXT NOT NULL,
category TEXT NOT NULL,
limit_amount INTEGER NOT NULL,
UNIQUE(month, category)
);