dbMap !== null); } /** * Gets the databasemap this map builder built. * * @return the databasemap */ public function getDatabaseMap() { return $this->dbMap; } /** * The doBuild() method builds the DatabaseMap * * @return void * @throws PropelException */ public function doBuild() { $this->dbMap = Propel::getDatabaseMap('workflow'); $tMap = $this->dbMap->addTable('CASE_LIST'); $tMap->setPhpName('CaseList'); $tMap->setUseIdGenerator(true); $tMap->addPrimaryKey('CAL_ID', 'CalId', 'int', CreoleTypes::INTEGER, true, null); $tMap->addColumn('CAL_TYPE', 'CalType', 'string', CreoleTypes::VARCHAR, true, 255); $tMap->addColumn('CAL_NAME', 'CalName', 'string', CreoleTypes::VARCHAR, true, 255); $tMap->addColumn('CAL_DESCRIPTION', 'CalDescription', 'string', CreoleTypes::LONGVARCHAR, false, null); $tMap->addColumn('ADD_TAB_UID', 'AddTabUid', 'string', CreoleTypes::VARCHAR, true, 32); $tMap->addColumn('CAL_COLUMNS', 'CalColumns', 'string', CreoleTypes::LONGVARCHAR, false, null); $tMap->addColumn('USR_ID', 'UsrId', 'string', CreoleTypes::BIGINT, true, 20); $tMap->addColumn('CAL_ICON_LIST', 'CalIconList', 'string', CreoleTypes::LONGVARCHAR, false, null); $tMap->addColumn('CAL_ICON_COLOR', 'CalIconColor', 'string', CreoleTypes::VARCHAR, false, 255); $tMap->addColumn('CAL_ICON_COLOR_SCREEN', 'CalIconColorScreen', 'string', CreoleTypes::VARCHAR, false, 255); $tMap->addColumn('CAL_CREATE_DATE', 'CalCreateDate', 'int', CreoleTypes::TIMESTAMP, true, null); $tMap->addColumn('CAL_UPDATE_DATE', 'CalUpdateDate', 'int', CreoleTypes::TIMESTAMP, true, null); } // doBuild() } // CaseListMapBuilder