1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?php
- /**
- * This class adds structure of 'registrationRequests' table to 'propel' DatabaseMap object.
- *
- *
- * This class was autogenerated by Propel 1.3.0-dev on:
- *
- * Sat Sep 26 07:07:41 2009
- *
- *
- * These statically-built map classes are used by Propel to do runtime db structure discovery.
- * For example, the createSelectSql() method checks the type of a given column used in an
- * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
- * (i.e. if it's a text column type).
- *
- * @package lib.model.map
- */
- class RegistrationRequestsTableMapBuilder implements MapBuilder {
- /**
- * The (dot-path) name of this class
- */
- const CLASS_NAME = 'lib.model.map.RegistrationRequestsTableMapBuilder';
- /**
- * The database map.
- */
- private $dbMap;
- /**
- * Tells us if this DatabaseMapBuilder is built so that we
- * don't have to re-build it every time.
- *
- * @return boolean true if this DatabaseMapBuilder is built, false otherwise.
- */
- public function isBuilt()
- {
- return ($this->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(RegistrationRequestsTablePeer::DATABASE_NAME);
- $tMap = $this->dbMap->addTable(RegistrationRequestsTablePeer::TABLE_NAME);
- $tMap->setPhpName('RegistrationRequestsTable');
- $tMap->setClassname('RegistrationRequestsTable');
- $tMap->setUseIdGenerator(true);
- $tMap->addPrimaryKey('ID', 'Id', 'INTEGER', true, 20);
- $tMap->addColumn('NAME', 'Name', 'LONGVARCHAR', true, null);
- $tMap->addColumn('DAYTIME', 'Daytime', 'TIMESTAMP', true, null);
- $tMap->addColumn('DATALOCATION', 'Datalocation', 'LONGVARCHAR', true, null);
- } // doBuild()
- } // RegistrationRequestsTableMapBuilder
|