Files
budgeteer/postgres/schema/0003_users.sql
2021-11-08 22:24:21 +00:00

10 lines
172 B
SQL

-- +goose Up
CREATE TABLE users (
id char(26) NOT NULL,
email text NOT NULL,
name text NOT NULL,
password text NOT NULL
);
-- +goose Down
DROP TABLE users;