From f8db2a5d1623c0f7a90e0523db4c5a84db3dce53 Mon Sep 17 00:00:00 2001
From: Sonia Zorba <sonia.zorba@inaf.it>
Date: Tue, 15 Jun 2021 10:59:35 +0200
Subject: [PATCH] Removed list_of_files table

---
 00-tables.sql | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/00-tables.sql b/00-tables.sql
index 8e7f69e..72a706f 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)
-);
-- 
GitLab