81e7223560
Text Extraction * bases * go * splitting * structure * movetoasync * movetoasync * settinguptrigger * reorder * storevent * standardisepollingvalidation * unittests * fixlint * fixlint * awscfg * generatesample * followthrough * tests * clena * store * externalidcleanup * clientid * local * baseunittests * putobjecttests * tests
13 lines
302 B
SQL
13 lines
302 B
SQL
CREATE TABLE clients (
|
|
id varchar(255) primary key,
|
|
name TEXT not null,
|
|
UNIQUE (name)
|
|
);
|
|
|
|
CREATE TABLE clientCanSync (
|
|
id uuid primary key DEFAULT uuid_generate_v7(),
|
|
clientId varchar(255) not null,
|
|
canSync boolean not null,
|
|
foreign key (clientId) references clients(id)
|
|
);
|