From e9d377ec4ba8412d9bd22a88f2561c2dca671839 Mon Sep 17 00:00:00 2001 From: jensp Date: Tue, 1 Oct 2013 15:50:45 +0000 Subject: [PATCH] Kleine Korrektur git-svn-id: https://svn.libreccm.org/ccm/trunk@2332 8810af33-2d31-482b-a856-94f89814c4df --- ccm-cms/pdl/com/arsdigita/content-section/ContentItem.pdl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ccm-cms/pdl/com/arsdigita/content-section/ContentItem.pdl b/ccm-cms/pdl/com/arsdigita/content-section/ContentItem.pdl index 96bb57425..a1c9a01df 100755 --- a/ccm-cms/pdl/com/arsdigita/content-section/ContentItem.pdl +++ b/ccm-cms/pdl/com/arsdigita/content-section/ContentItem.pdl @@ -31,14 +31,15 @@ object type ContentItem extends VersionedACSObject { String[1..1] name = cms_items.name VARCHAR(200); ContentSection[0..1] section = 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 // and denormalizes the tree thus eliminating the need for // a 'connect by' statement. 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);