auth-server/migrations/2020-03-01-120634_create_users/up.sql
Alex Wright 6cb7b5affa Adding diesel dep.
Need somewhere to store sessions and tokens.
2020-03-01 16:57:53 +01:00

9 lines
217 B
SQL

-- Your SQL goes here
CREATE TABLE users (
id SERIAL PRIMARY KEY,
username VARCHAR(32),
is_active BOOLEAN DEFAULT TRUE,
created_at TIMESTAMPTZ DEFAULT now(),
updated_at TIMESTAMPTZ DEFAULT NULL
);