rust_forum/migrations/20241204225135_create_user_table.up.sql
2025-01-19 23:47:09 +03:00

10 lines
354 B
SQL

-- Add up migration script here
CREATE TABLE IF NOT EXISTS "user"(
user_id BIGSERIAL PRIMARY KEY NOT NULL UNIQUE,
name VARCHAR(256) NOT NULL,
surname VARCHAR(256) NOT NULL,
gender boolean NOT NULL,
birth_date DATE NOT NULL,
role_id BIGSERIAL NOT NULL REFERENCES "role"(id),
creation_time TIMESTAMPTZ NOT NULL DEFAULT NOW()
);