auth-server/migrations/2020-03-01-120634_create_users/up.sql

9 lines
242 B
MySQL
Raw Permalink Normal View History

-- Your SQL goes here
CREATE TABLE users (
id SERIAL PRIMARY KEY,
2020-03-01 18:36:10 +00:00
username VARCHAR(32) UNIQUE NOT NULL,
is_active BOOLEAN DEFAULT TRUE NOT NULL,
created_at TIMESTAMPTZ DEFAULT now(),
updated_at TIMESTAMPTZ DEFAULT NULL
);