This commit is contained in:
Roly Rudy Gutierrez Pinto
2018-06-04 12:33:56 -04:00
parent 3ccafc9a71
commit fefe8d4f85
25 changed files with 1791 additions and 667 deletions

View File

@@ -63,10 +63,12 @@ class InputDocumentMapBuilder
$tMap = $this->dbMap->addTable('INPUT_DOCUMENT');
$tMap->setPhpName('InputDocument');
$tMap->setUseIdGenerator(false);
$tMap->setUseIdGenerator(true);
$tMap->addPrimaryKey('INP_DOC_UID', 'InpDocUid', 'string', CreoleTypes::VARCHAR, true, 32);
$tMap->addColumn('INP_DOC_ID', 'InpDocId', 'int', CreoleTypes::INTEGER, true, null);
$tMap->addColumn('PRO_UID', 'ProUid', 'string', CreoleTypes::VARCHAR, true, 32);
$tMap->addColumn('INP_DOC_TITLE', 'InpDocTitle', 'string', CreoleTypes::LONGVARCHAR, true, null);