5b7160fe44
Job Collector * createstructure * mostupdatevalidation * repocollectorupdate * updateoutline * updatevalidation * scriptupdate * cleanupdockerignore * update * collectorupdateapi
6 lines
195 B
SQL
6 lines
195 B
SQL
CREATE TABLE jobs (
|
|
id uuid primary key DEFAULT gen_random_uuid(),
|
|
clientId uuid not null,
|
|
canSync boolean not null default false,
|
|
foreign key (clientId) references clients(id)
|
|
); |