librepages/migrations/20220910140647_librepages_users.sql

8 lines
217 B
MySQL
Raw Normal View History

2022-09-10 20:08:59 +05:30
CREATE TABLE IF NOT EXISTS librepages_users (
name VARCHAR(100) NOT NULL UNIQUE,
email VARCHAR(100) UNIQUE NOT NULL,
email_verified BOOLEAN DEFAULT NULL,
password TEXT NOT NULL,
ID SERIAL PRIMARY KEY NOT NULL
);