Commit bf079f35 authored by Cristiano Urban's avatar Cristiano Urban
Browse files

Modified file catalog data initialization.

parent b4101455
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -3,5 +3,9 @@
*/

INSERT INTO Node (parent_path, name, type, owner_id, creator_id) VALUES (NULL, '', 'container', '3354', '3354');          -- /
INSERT INTO Node (parent_path, name, type, owner_id, creator_id) VALUES ('', 'home', 'container', '3354', '3354');       -- /home
INSERT INTO Node (parent_path, name, type, owner_id, creator_id) VALUES ('2', 'curban', 'container', '3354', '3354');    -- /home/curban
INSERT INTO Node (parent_path, name, type, owner_id, creator_id) VALUES ('', 'curban', 'container', '3354', '3354');      -- /curban
INSERT INTO Node (parent_path, name, type, owner_id, creator_id) VALUES ('2', 'store', 'container', '3354', '3354');      -- /curban/store
INSERT INTO Node (parent_path, name, type, owner_id, creator_id) VALUES ('', 'sbertocco', 'container', '3354', '3354');   -- /sbertocco
INSERT INTO Node (parent_path, name, type, owner_id, creator_id) VALUES ('4', 'store', 'container', '3354', '3354');      -- /sbertocco/store
INSERT INTO Node (parent_path, name, type, owner_id, creator_id) VALUES ('', 'szorba', 'container', '3354', '3354');      -- /szorba
INSERT INTO Node (parent_path, name, type, owner_id, creator_id) VALUES ('6', 'store', 'container', '3354', '3354');      -- /szorba/store
 No newline at end of file