Added new column in Swimlanes 'SWI_NEXT_UID'

This commit is contained in:
girish
2011-02-23 06:26:18 +00:00
parent b4c4beaa64
commit 17d3910481
5 changed files with 81 additions and 10 deletions

View File

@@ -78,6 +78,8 @@ class SwimlanesElementsMapBuilder {
$tMap->addColumn('SWI_HEIGHT', 'SwiHeight', 'int', CreoleTypes::INTEGER, true, null);
$tMap->addColumn('SWI_NEXT_UID', 'SwiNextUid', 'string', CreoleTypes::VARCHAR, false, 32);
$tMap->addValidator('SWI_UID', 'maxLength', 'propel.validator.MaxLengthValidator', '32', 'Swimlane Element UID can be no larger than 32 in size');
$tMap->addValidator('SWI_UID', 'required', 'propel.validator.RequiredValidator', '', 'Swimlane Element UID is required.');