Commit f8db2a5d authored by Sonia Zorba's avatar Sonia Zorba
Browse files

Removed list_of_files table

parent 2082d3f1
Loading
Loading
Loading
Loading
Loading
+0 −11
Original line number Diff line number Diff line
@@ -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)
);