Added new column in gateway 'GAT_NEXT_TYPE'

This commit is contained in:
girish
2011-02-17 11:31:56 +00:00
parent 8e20135fc5
commit 2aabd3322a
5 changed files with 81 additions and 10 deletions

View File

@@ -78,6 +78,8 @@ class GatewayMapBuilder {
$tMap->addColumn('GAT_TYPE', 'GatType', 'string', CreoleTypes::VARCHAR, true, 32);
$tMap->addColumn('GAT_NEXT_TYPE', 'GatNextType', 'string', CreoleTypes::VARCHAR, true, 32);
$tMap->addValidator('GAT_UID', 'maxLength', 'propel.validator.MaxLengthValidator', '32', 'Gateway UID can be no larger than 32 in size');
$tMap->addValidator('GAT_UID', 'required', 'propel.validator.RequiredValidator', '', 'Gateway Element UID is required.');