Files
query-orchestration/database/migrations/00000000000006_documents.up.sql
T
Michael McGuinness b16ff55afa Merged in feature/document (pull request #36)
Document CRUD

* doccreate

* dochashlocandget

* depsandtodo
2025-01-24 16:12:25 +00:00

7 lines
199 B
SQL

CREATE TABLE documents (
id uuid primary key DEFAULT gen_random_uuid(),
jobId uuid not null,
hash text not null,
location text not null,
foreign key (jobId) references jobs(id)
);