Home

mint @f3cdde75f2c5333136ba1f0aeb7f88b271ba60a9 - refs - log -
-
https://git.jolheiser.com/mint.git
Budget
mint / database / sqlc / migrations / 001_schema.up.sql
- raw -
1
2
3
4
5
6
7
CREATE TABLE transactions (
    id         INTEGER PRIMARY KEY,
    title      TEXT    NOT NULL,
    amount     INTEGER NOT NULL,
    date       DATE    NOT NULL,
    recurrance TEXT    NOT NULL
);