123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?php
- /**
- * This class adds structure of 'upload' 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 UploadTableMapBuilder implements MapBuilder {
- /**
- * The (dot-path) name of this class
- */
- const CLASS_NAME = 'lib.model.map.UploadTableMapBuilder';
- /**
- * 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(UploadTablePeer::DATABASE_NAME);
- $tMap = $this->dbMap->addTable(UploadTablePeer::TABLE_NAME);
- $tMap->setPhpName('UploadTable');
- $tMap->setClassname('UploadTable');
- $tMap->setUseIdGenerator(true);
- $tMap->addPrimaryKey('ID', 'Id', 'INTEGER', true, 11);
- $tMap->addColumn('USER', 'User', 'VARCHAR', true, 25);
- $tMap->addColumn('DAYTIME', 'Daytime', 'TIMESTAMP', true, null);
- $tMap->addColumn('URL', 'Url', 'LONGVARCHAR', true, null);
- $tMap->addColumn('FILENAME', 'Filename', 'LONGVARCHAR', true, null);
- $tMap->addColumn('FILESIZE', 'Filesize', 'INTEGER', true, 10);
- $tMap->addColumn('STATE', 'State', 'CHAR', true, null);
- $tMap->addColumn('DESCRIPTION', 'Description', 'LONGVARCHAR', false, null);
- $tMap->addForeignKey('CATEGORY_ID', 'CategoryId', 'INTEGER', 'category', 'ID', true, 11);
- } // doBuild()
- } // UploadTableMapBuilder
|