BUG 8727 Increase the maxlength of the Condition of the Evaluation ... SOLVED.

- We'd need to increase the max-length of the Condition of the Evaluation routing rule because there are some special rules that need more length.
- Adjust the maxlength the ROU_CONDITION field in Evaluation, Selection, Parallel By Evaluation Routing Rule.
This commit is contained in:
Hector Cortez
2012-03-21 10:40:10 -04:00
parent d7844fdee6
commit 1922a69dc6
7 changed files with 7 additions and 7 deletions

View File

@@ -78,7 +78,7 @@ class RouteMapBuilder {
$tMap->addColumn('ROU_TYPE', 'RouType', 'string', CreoleTypes::VARCHAR, true, 25);
$tMap->addColumn('ROU_CONDITION', 'RouCondition', 'string', CreoleTypes::VARCHAR, true, 255);
$tMap->addColumn('ROU_CONDITION', 'RouCondition', 'string', CreoleTypes::VARCHAR, true, 512);
$tMap->addColumn('ROU_TO_LAST_USER', 'RouToLastUser', 'string', CreoleTypes::VARCHAR, true, 20);