mirror of
https://github.com/agersant/polaris
synced 2024-11-10 10:14:12 +00:00
11 lines
245 B
SQL
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)
|
|
);
|