Add run target

This commit is contained in:
2021-11-29 22:04:04 +00:00
parent 85ef7557c1
commit 8e8c653fc9
3 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,11 @@
-- +goose Up
CREATE TABLE transactions (
id uuid DEFAULT uuid_generate_v4() NOT NULL,
budget_id uuid NOT NULL,
date date NOT NULL,
memo text NULL,
amount decimal(12,2) NOT NULL
);
-- +goose Down
DROP TABLE transactions;