Added new column 'GAT_UID' in ROUTE table

This commit is contained in:
girish
2011-01-04 15:07:02 +00:00
parent 0904969292
commit f3d4525c63
5 changed files with 81 additions and 10 deletions

View File

@@ -96,6 +96,8 @@ class RouteMapBuilder {
$tMap->addColumn('ROU_EVN_UID', 'RouEvnUid', 'string', CreoleTypes::VARCHAR, true, 32);
$tMap->addColumn('GAT_UID', 'GatUid', 'string', CreoleTypes::VARCHAR, true, 32);
$tMap->addValidator('ROU_UID', 'maxLength', 'propel.validator.MaxLengthValidator', '32', 'Route UID can be no larger than 32 in size');
$tMap->addValidator('ROU_UID', 'required', 'propel.validator.RequiredValidator', '', 'Route UID is required.');