-- Your SQL goes here CREATE TABLE public."user" ( id integer NOT NULL GENERATED ALWAYS AS IDENTITY, email text NOT NULL, password text NOT NULL, first_name text, last_name text, birthday date, PRIMARY KEY (id), UNIQUE (email), UNIQUE (password) );