create table if not exists users ( id uuid not null primary key, uid text unique not null, email text not null ); create index on users (uid);