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