nyanoblog/migrations/20221206184956_create_users.sql

12 lines
360 B
SQL

CREATE TABLE users (
id BIGSERIAL PRIMARY KEY,
account_id BIGINT REFERENCES accounts (id),
email VARCHAR NOT NULL,
password VARCHAR NOT NULL,
reason VARCHAR DEFAULT NULL,
activated BOOLEAN NOT NULL DEFAULT FALSE,
locale VARCHAR NOT NULL,
private_key bytea NOT NULL
);
CREATE UNIQUE INDEX index_users_on_email ON users (email);