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

Removed location from root node

parent a38759e1
No related branches found
No related tags found
No related merge requests found
Pipeline #1752 passed
...@@ -31,4 +31,4 @@ ALTER TABLE node ADD COLUMN relative_path ltree GENERATED ALWAYS AS (path(parent ...@@ -31,4 +31,4 @@ ALTER TABLE node ADD COLUMN relative_path ltree GENERATED ALWAYS AS (path(parent
CREATE INDEX file_rel_path_gist_idx ON node USING GIST(relative_path); CREATE INDEX file_rel_path_gist_idx ON node USING GIST(relative_path);
-- Create root node -- Create root node
INSERT INTO node (parent_path, parent_relative_path, name, type, creator_id, location_id, is_public) VALUES (NULL, NULL, '', 'container', '0', 1, true); INSERT INTO node (parent_path, parent_relative_path, name, type, creator_id, is_public) VALUES (NULL, NULL, '', 'container', '0', true);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment