Skip to content
Snippets Groups Projects
Commit f8db2a5d authored by Sonia Zorba's avatar Sonia Zorba
Browse files

Removed list_of_files table

parent 2082d3f1
No related branches found
No related tags found
No related merge requests found
Pipeline #1976 passed
......@@ -149,14 +149,3 @@ CREATE TABLE job (
);
CREATE INDEX owner_idx ON job USING btree(owner_id);
-- Stores the content of StructuredDataNodes representing a list of files.
CREATE TABLE list_of_files (
list_node_id BIGSERIAL NOT NULL,
node_id BIGSERIAL NOT NULL,
PRIMARY KEY (list_node_id, node_id),
FOREIGN KEY (list_node_id) REFERENCES node (node_id),
FOREIGN KEY (node_id) REFERENCES node (node_id)
);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment