create table users ( id uuid primary key default uuidv4(), email varchar(255) unique not null, password varchar(255) not null, created_at timestamptz not null default now(), updated_at timestamptz not null default now() );