CREATE TABLE clients ( id uuid primary key DEFAULT gen_random_uuid(), name TEXT not null, canSync boolean not null default false, UNIQUE (name) );