nyanoblog/migrations/20221206184956_create_users.sql

10 lines
266 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,
activated BOOLEAN NOT NULL DEFAULT FALSE
);
CREATE UNIQUE INDEX index_users_on_email ON users (email);