12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?php
- /**
- * This class adds structure of 'professions' 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 ProfessionsTableMapBuilder implements MapBuilder {
- /**
- * The (dot-path) name of this class
- */
- const CLASS_NAME = 'lib.model.map.ProfessionsTableMapBuilder';
- /**
- * 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(ProfessionsTablePeer::DATABASE_NAME);
- $tMap = $this->dbMap->addTable(ProfessionsTablePeer::TABLE_NAME);
- $tMap->setPhpName('ProfessionsTable');
- $tMap->setClassname('ProfessionsTable');
- $tMap->setUseIdGenerator(false);
- $tMap->addPrimaryKey('ID', 'Id', 'INTEGER', true, 11);
- $tMap->addColumn('NAME', 'Name', 'VARCHAR', true, 20);
- } // doBuild()
- } // ProfessionsTableMapBuilder
|