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);