budgeteer/postgres/schema/0003_users.sql
2021-12-11 21:55:33 +00:00

11 lines
239 B
SQL

-- +goose Up
CREATE TABLE users (
id uuid DEFAULT uuid_generate_v4() PRIMARY KEY,
email text NOT NULL,
name text NOT NULL,
password text NOT NULL,
last_login timestamp with time zone
);
-- +goose Down
DROP TABLE users;