8 lines
147 B
SQL
8 lines
147 B
SQL
-- +goose Up
|
|
CREATE TABLE user_budgets (
|
|
user_id char(26) NOT NULL,
|
|
budget_id char(26) NOT NULL
|
|
);
|
|
|
|
-- +goose Down
|
|
DROP TABLE user_budgets; |