mirror of
https://github.com/agersant/polaris
synced 2024-11-14 03:17:06 +00:00
8 lines
178 B
SQL
8 lines
178 B
SQL
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,
|
|
UNIQUE(name)
|
|
);
|