Skip to content
Snippets Groups Projects

Draft: EHN: file system: link

Open Timm Fitschen requested to merge f-filesystem-link into f-filesystem-directory
2 files
+ 4
3
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -71,6 +71,8 @@ INSERT IGNORE INTO entity_ids (id, internal_id) VALUES (9,9);
@@ -71,6 +71,8 @@ INSERT IGNORE INTO entity_ids (id, internal_id) VALUES (9,9);
-- Add a new special role "LINK"
-- Add a new special role "LINK"
INSERT IGNORE INTO entities (id, description, role, acl) VALUES (10, "The link role.", "ROLE", 0);
INSERT IGNORE INTO entities (id, description, role, acl) VALUES (10, "The link role.", "ROLE", 0);
INSERT IGNORE INTO name_data (domain_id, entity_id, property_id, value, status, pidx) VALUES (0, 10, 20, "LINK", "FIX", 0);
INSERT IGNORE INTO name_data (domain_id, entity_id, property_id, value, status, pidx) VALUES (0, 10, 20, "LINK", "FIX", 0);
 
INSERT IGNORE INTO entity_ids (id, internal_id) VALUES (10,10);
 
-- In the default file storage back-end the key is just the path.
-- In the default file storage back-end the key is just the path.
UPDATE files SET file_key=path;
UPDATE files SET file_key=path;
Loading