create table organizations ( id uuid primary key default uuidv4(), name varchar(255) not null, slug varchar(255) not null unique, -- acme-corp-a7x9 created_at timestamptz not null default now(), updated_at timestamptz not null default now() );