create table if not exists user_email ( "user" uuid not null primary key, email varchar(255) not null, created_at timestamp with time zone not null ); create index if not exists idx_user_email_email on user_email (email);