katbin/migrations/2020-06-24-164134_create_users/up.sql
ATechnoHazard e782e6640f
diesel: Create migrations for users and pastes
Signed-off-by: ATechnoHazard <amolele@gmail.com>
2020-06-24 22:41:01 +05:30

7 lines
130 B
SQL

CREATE TABLE IF NOT EXISTS users
(
id VARCHAR PRIMARY KEY,
username VARCHAR,
password VARCHAR,
activated BOOLEAN
)