Kleine Korrektur

git-svn-id: https://svn.libreccm.org/ccm/trunk@2332 8810af33-2d31-482b-a856-94f89814c4df
master
jensp 2013-10-01 15:50:45 +00:00
parent a6961ddc99
commit e9d377ec4b
1 changed files with 3 additions and 2 deletions

View File

@ -31,14 +31,15 @@ object type ContentItem extends VersionedACSObject {
String[1..1] name = cms_items.name VARCHAR(200); String[1..1] name = cms_items.name VARCHAR(200);
ContentSection[0..1] section = ContentSection[0..1] section =
join cms_items.section_id to content_sections.section_id; join cms_items.section_id to content_sections.section_id;
String[0..1] language = cms_items.language; String[0..1] language = cms_items.language;
String[0..1] additionalInfo = cms_items.additional_info VARCHAR(1024);
// The 'ancestors' column contains a list of item ids of the parents // The 'ancestors' column contains a list of item ids of the parents
// and denormalizes the tree thus eliminating the need for // and denormalizes the tree thus eliminating the need for
// a 'connect by' statement. // a 'connect by' statement.
String[0..1] ancestors = cms_items.ancestors VARCHAR(3209); String[0..1] ancestors = cms_items.ancestors VARCHAR(3209);
String[0..1] additionalInfo = cms_items.additional_info VARCHAR(1024);
reference key (cms_items.item_id); reference key (cms_items.item_id);