rust_forum/migrations/20241204225135_create_user_table.up.sql

11 lines
388 B
MySQL
Raw Normal View History

2024-12-03 21:33:42 +03:00
-- Add up migration script here
CREATE TABLE IF NOT EXISTS "user"(
2024-12-04 23:17:19 +03:00
id BIGSERIAL PRIMARY KEY NOT NULL UNIQUE,
name VARCHAR(255) NOT NULL,
surname VARCHAR(255) NOT NULL,
gender boolean NOT NULL,
birth_date DATE NOT NULL,
email VARCHAR(255) NOT NULL UNIQUE,
role_id BIGSERIAL NOT NULL REFERENCES "role"(id),
creation_time TIMESTAMPTZ NOT NULL DEFAULT NOW()
);