polaris/migrations/2019-09-28-231910_pbkdf2_simple/down.sql
2019-09-28 16:38:43 -07:00

11 lines
245 B
SQL

DROP TABLE users;
CREATE TABLE users (
id INTEGER PRIMARY KEY NOT NULL,
name TEXT NOT NULL,
password_salt BLOB NOT NULL,
password_hash BLOB NOT NULL,
admin INTEGER NOT NULL,
lastfm_username TEXT,
lastfm_session_key TEXT,
UNIQUE(name)
);