b16ff55afa
Document CRUD * doccreate * dochashlocandget * depsandtodo
7 lines
199 B
SQL
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)
|
|
); |