compiling state [wip]

This commit is contained in:
2022-11-23 18:19:17 +01:00
parent f105b2ef2e
commit 3256c7f5fe
16 changed files with 176 additions and 0 deletions
@@ -0,0 +1,10 @@
-- Your SQL goes here
CREATE TABLE users (
id SERIAL PRIMARY KEY,
username VARCHAR NOT NULL,
email VARCHAR NOT NULL,
password VARCHAR NOT NULL,
unique_id VARCHAR NOT NULL,
UNIQUE (email),
UNIQUE (username)
)