summaryrefslogtreecommitdiffstats
path: root/data/tax_returns.sql
blob: 6a7ee19e949e8b82d9cb2f7b2aca973b25b72910 (plain) (blame)
1
2
3
4
5
6
7
8
DROP TABLE IF EXISTS taxes;
DROP TABLE IF EXISTS tax_returns;

CREATE TABLE tax_returns (
    year date PRIMARY KEY,
    total_income bigint,
    total_tax bigint
);