diff --git a/ccm-cms/application.xml b/ccm-cms/application.xml index 015c5077c..0fabd046e 100755 --- a/ccm-cms/application.xml +++ b/ccm-cms/application.xml @@ -2,7 +2,7 @@ diff --git a/ccm-cms/pdl/com/arsdigita/content-section/ContentItem.pdl b/ccm-cms/pdl/com/arsdigita/content-section/ContentItem.pdl index ea68197b5..96bb57425 100755 --- a/ccm-cms/pdl/com/arsdigita/content-section/ContentItem.pdl +++ b/ccm-cms/pdl/com/arsdigita/content-section/ContentItem.pdl @@ -38,6 +38,8 @@ object type ContentItem extends VersionedACSObject { // 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); // Basic auditing info for content items diff --git a/ccm-cms/pdl/com/arsdigita/content-section/ContentPage.pdl b/ccm-cms/pdl/com/arsdigita/content-section/ContentPage.pdl index 60b4f193c..6ee5048e7 100755 --- a/ccm-cms/pdl/com/arsdigita/content-section/ContentPage.pdl +++ b/ccm-cms/pdl/com/arsdigita/content-section/ContentPage.pdl @@ -15,7 +15,7 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// $Id: ContentPage.pdl 1263 2006-07-17 08:18:47Z cgyg9330 $ +// $Id: ContentPage.pdl 1263 2006-07-17 08:18:47Z cgyg9330 $ // $DateTime: 2004/08/17 23:15:09 $ model com.arsdigita.cms; @@ -26,9 +26,9 @@ object type ContentPage extends ContentItem { String[0..1] title = cms_pages.title VARCHAR(1000); Date[0..1] launchDate = cms_pages.launch_date DATE; - // would have used description as attribute name, but existing subtypes - // use that name - String[0..1] pageDescription = cms_pages.description VARCHAR(4000); + // would have used description as attribute name, but existing subtypes + // use that name + String[0..1] pageDescription = cms_pages.description VARCHAR(4000); reference key (cms_pages.item_id); } diff --git a/ccm-cms/src/ccm-cms.upgrade b/ccm-cms/src/ccm-cms.upgrade index 68f777d85..7bc93a73c 100755 --- a/ccm-cms/src/ccm-cms.upgrade +++ b/ccm-cms/src/ccm-cms.upgrade @@ -73,4 +73,8 @@