Files
luos/workflow/engine/classes/model/map/DashletMapBuilder.php

87 lines
2.4 KiB
PHP
Raw Normal View History

2011-10-28 12:20:45 -04:00
<?php
require_once 'propel/map/MapBuilder.php';
include_once 'creole/CreoleTypes.php';
/**
* This class adds structure of 'DASHLET' table to 'workflow' DatabaseMap object.
*
*
*
* 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 workflow.classes.model.map
*/
class DashletMapBuilder
{
2011-10-28 12:20:45 -04:00
/**
* The (dot-path) name of this class
*/
const CLASS_NAME = 'classes.model.map.DashletMapBuilder';
2011-10-28 12:20:45 -04:00
/**
* The database map.
*/
private $dbMap;
2011-10-28 12:20:45 -04:00
/**
* 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);
}
2011-10-28 12:20:45 -04:00
/**
* Gets the databasemap this map builder built.
*
* @return the databasemap
*/
public function getDatabaseMap()
{
return $this->dbMap;
}
2011-10-28 12:20:45 -04:00
/**
* The doBuild() method builds the DatabaseMap
*
* @return void
* @throws PropelException
*/
public function doBuild()
{
$this->dbMap = Propel::getDatabaseMap('workflow');
2011-10-28 12:20:45 -04:00
$tMap = $this->dbMap->addTable('DASHLET');
$tMap->setPhpName('Dashlet');
2011-10-28 12:20:45 -04:00
$tMap->setUseIdGenerator(false);
2011-10-28 12:20:45 -04:00
$tMap->addPrimaryKey('DAS_UID', 'DasUid', 'string', CreoleTypes::VARCHAR, true, 32);
2011-10-28 12:20:45 -04:00
$tMap->addColumn('DAS_CLASS', 'DasClass', 'string', CreoleTypes::VARCHAR, true, 50);
2011-10-28 12:20:45 -04:00
$tMap->addColumn('DAS_TITLE', 'DasTitle', 'string', CreoleTypes::VARCHAR, true, 255);
2011-10-28 12:20:45 -04:00
$tMap->addColumn('DAS_DESCRIPTION', 'DasDescription', 'string', CreoleTypes::LONGVARCHAR, false, null);
2011-10-28 12:20:45 -04:00
$tMap->addColumn('DAS_VERSION', 'DasVersion', 'string', CreoleTypes::VARCHAR, true, 10);
2011-10-28 12:20:45 -04:00
$tMap->addColumn('DAS_CREATE_DATE', 'DasCreateDate', 'int', CreoleTypes::TIMESTAMP, true, null);
2011-10-28 12:20:45 -04:00
$tMap->addColumn('DAS_UPDATE_DATE', 'DasUpdateDate', 'int', CreoleTypes::TIMESTAMP, false, null);
2011-10-28 12:20:45 -04:00
$tMap->addColumn('DAS_STATUS', 'DasStatus', 'int', CreoleTypes::TINYINT, true, null);
2011-10-28 12:20:45 -04:00
} // doBuild()
2011-10-28 12:20:45 -04:00
} // DashletMapBuilder