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('SESSION_STORAGE'); $tMap->setPhpName('SessionStorage'); $tMap->setUseIdGenerator(false); $tMap->addPrimaryKey('ID', 'Id', 'string', CreoleTypes::VARCHAR, true, 128); $tMap->addColumn('SET_TIME', 'SetTime', 'string', CreoleTypes::VARCHAR, true, 10); $tMap->addColumn('DATA', 'Data', 'string', CreoleTypes::LONGVARCHAR, true, null); $tMap->addColumn('SESSION_KEY', 'SessionKey', 'string', CreoleTypes::VARCHAR, true, 128); $tMap->addColumn('CLIENT_ADDRESS', 'ClientAddress', 'string', CreoleTypes::VARCHAR, false, 32); } // doBuild() } // SessionStorageMapBuilder