create table users ( id uuid default gen_random_uuid() constraint users_pk primary key, first_name varchar not null, last_name varchar not null, email varchar not null constraint users_email_key unique, password varchar not null, created_at timestamp default now() );