nyanoblog/migrations/20221206184956_create_users.sql

12 lines
328 B
MySQL
Raw Normal View History

2022-12-07 07:34:45 +01:00
CREATE TABLE users (
id BIGSERIAL PRIMARY KEY,
account_id BIGINT REFERENCES accounts (id),
email VARCHAR NOT NULL,
password VARCHAR NOT NULL,
2022-12-19 15:45:03 +01:00
reason VARCHAR DEFAULT NULL,
activated BOOLEAN NOT NULL DEFAULT FALSE,
locale VARCHAR NOT NULL
2022-12-07 07:34:45 +01:00
);
CREATE UNIQUE INDEX index_users_on_email ON users (email);