BrainMinder/assets/migrations/000002_create_users_table.up.sql
2024-08-22 10:13:16 +02:00

7 lines
173 B
SQL

CREATE TABLE users (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
created TIMESTAMP NOT NULL,
email TEXT NOT NULL UNIQUE,
hashed_password TEXT NOT NULL
);