diff --git a/00-tables.sql b/00-tables.sql
index 8e7f69e082e4bfaded5b5b873febebc191654ecb..72a706f0b96ed6e2aff24ce2ca87fb3522e05bf1 100644
--- a/00-tables.sql
+++ b/00-tables.sql
@@ -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)
-);