BrainMinder/assets/migrations/000002_create_users_table.up.sql

7 lines
173 B
MySQL
Raw Permalink Normal View History

2024-08-22 10:13:16 +02:00
CREATE TABLE users (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
created TIMESTAMP NOT NULL,
email TEXT NOT NULL UNIQUE,
hashed_password TEXT NOT NULL
);