egeneracion propel-build-model para tabla Login Log.

This commit is contained in:
Dheeyi William
2016-09-19 10:26:03 -04:00
parent 948e12a6b1
commit 7cf1d7e794
4 changed files with 148 additions and 64 deletions

View File

@@ -63,9 +63,11 @@ class LoginLogMapBuilder
$tMap = $this->dbMap->addTable('LOGIN_LOG');
$tMap->setPhpName('LoginLog');
$tMap->setUseIdGenerator(false);
$tMap->setUseIdGenerator(true);
$tMap->addPrimaryKey('LOG_UID', 'LogUid', 'string', CreoleTypes::VARCHAR, true, 32);
$tMap->addPrimaryKey('LOG_ID', 'LogId', 'int', CreoleTypes::INTEGER, true, null);
$tMap->addColumn('LOG_UID', 'LogUid', 'string', CreoleTypes::VARCHAR, true, 32);
$tMap->addColumn('LOG_STATUS', 'LogStatus', 'string', CreoleTypes::VARCHAR, true, 100);