efe87321b2
Testing Tweaks * parallel * slowestquery * split * cleanup * health * dynamiccores * go * profile * timeout * commitmychanges * taskfile * sqlcheckstart * client * cost * ctxtimeout
13 lines
318 B
SQL
13 lines
318 B
SQL
CREATE TABLE clients (
|
|
clientId varchar(255) primary key,
|
|
name TEXT not null,
|
|
UNIQUE (name)
|
|
);
|
|
|
|
CREATE TABLE clientCanSync (
|
|
syncId uuid primary key DEFAULT uuid_generate_v7(),
|
|
clientId varchar(255) not null,
|
|
canSync boolean not null,
|
|
foreign key (clientId) references clients(clientId)
|
|
);
|