Renderer/Scripts/auth/createAuthTables.sql
2022-05-05 23:29:41 -04:00

8 lines
147 B
SQL

-- accounts definition
CREATE TABLE accounts (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
username TEXT NOT NULL,
pwdhash TEXT NOT NULL
);