create table sync_types ( key text primary key not null, created_at timestamptz not null default now() ); insert into sync_types (key) values ('project'); insert into sync_types (key) values ('library'); insert into sync_types (key) values ('binary');