9 lines
171 B
SQL
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; |