setup file for db

This commit is contained in:
mm 2023-03-18 22:48:53 +00:00
parent dc5fcba825
commit 3341e6d1d6

5
setup.sql Normal file
View File

@ -0,0 +1,5 @@
CREATE TABLE IF NOT EXISTS "user" (
id SERIAL PRIMARY KEY,
username VARCHAR(64) UNIQUE NOT NULL,
password_hash VARCHAR(128) NOT NULL
);