Files
budgeteer/postgres/schema/0001_budgets.sql
2021-11-08 22:24:21 +00:00

9 lines
171 B
SQL

-- +goose Up
CREATE TABLE budgets (
id char(26) NOT NULL,
name text NOT NULL,
last_modification timestamp with time zone
);
-- +goose Down
DROP TABLE budgets;