9 lines
197 B
SQL
9 lines
197 B
SQL
-- +goose Up
|
|
CREATE TABLE budgets (
|
|
id uuid DEFAULT uuid_generate_v4() PRIMARY KEY,
|
|
name text NOT NULL,
|
|
last_modification timestamp with time zone
|
|
);
|
|
|
|
-- +goose Down
|
|
DROP TABLE budgets; |