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('propel'); $tMap = $this->dbMap->addTable('katao_member_group'); $tMap->setPhpName('KataoMemberGroup'); $tMap->setUseIdGenerator(true); $tMap->addPrimaryKey('ID', 'Id', 'int', CreoleTypes::INTEGER, true, null); $tMap->addColumn('KATAO_MEMBER_GROUP_NAME', 'KataoMemberGroupName', 'string', CreoleTypes::VARCHAR, false, 255); } // doBuild() } // KataoMemberGroupMapBuilder