pativu/migrations/20220910140647_librepages_u...

8 lines
218 B
MySQL
Raw Permalink Normal View History

2022-12-02 19:07:09 +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 INTEGER PRIMARY KEY NOT NULL
);