HOR-1316 Agregar el campo DEPO_TITLE en la tabla DEPARTMENT

This commit is contained in:
Ronald Q
2016-06-29 11:52:56 -04:00
parent e8caa0ae5d
commit 5c79eb30da
10 changed files with 130 additions and 106 deletions

View File

@@ -67,6 +67,8 @@ class DepartmentMapBuilder
$tMap->addPrimaryKey('DEP_UID', 'DepUid', 'string', CreoleTypes::VARCHAR, true, 32);
$tMap->addColumn('DEP_TITLE', 'DepTitle', 'string', CreoleTypes::LONGVARCHAR, true, null);
$tMap->addColumn('DEP_PARENT', 'DepParent', 'string', CreoleTypes::VARCHAR, true, 32);
$tMap->addColumn('DEP_MANAGER', 'DepManager', 'string', CreoleTypes::VARCHAR, true, 32);