home / bsi_data

budgets

✎ View and edit SQL

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)
        );
Powered by Datasette · Queries took 6.634ms