Files
2022-12-24 16:34:17 +01:00

11 lines
236 B
SQL
Executable File

-- 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)
)