tld-registration/db_queries/init.sql

6 lines
152 B
MySQL
Raw Normal View History

2021-08-20 05:39:01 +00:00
CREATE TABLE IF NOT EXISTS users(
email TEXT PRIMARY KEY,
password BLOB NOT NULL
);
CREATE UNIQUE INDEX IF NOT EXISTS ix_email ON users(email);