-- +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;