Files
query-orchestration/database/migrations/00000000000004_jobs.up.sql
T
Michael McGuinness 5b7160fe44 Merged in fature/jobs (pull request #34)
Job Collector

* createstructure

* mostupdatevalidation

* repocollectorupdate

* updateoutline

* updatevalidation

* scriptupdate

* cleanupdockerignore

* update

* collectorupdateapi
2025-01-23 14:56:20 +00:00

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)
);