fog/cmd/migrate/migrations/000001_create_users.up.sql

9 lines
263 B
MySQL
Raw Permalink Normal View History

2024-12-30 10:02:01 +00:00
CREATE EXTENSION IF NOT EXISTS citext;
CREATE TABLE IF NOT EXISTS users(
id bigserial PRIMARY KEY,
username varchar(255) UNIQUE NOT NULL,
email citext UNIQUE NOT NULL,
password bytea NOT NULL,
created_at timestamp(0) with time zone NOT NULL DEFAULT NOW()
);