2011-07-14 10:45:20 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
require_once 'propel/map/MapBuilder.php';
|
|
|
|
|
include_once 'creole/CreoleTypes.php';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* This class adds structure of 'APP_NOTES' 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
|
|
|
|
|
*/
|
2012-10-04 17:54:44 -04:00
|
|
|
class AppNotesMapBuilder
|
|
|
|
|
{
|
2011-07-14 10:45:20 -04:00
|
|
|
|
2012-10-04 17:54:44 -04:00
|
|
|
/**
|
|
|
|
|
* The (dot-path) name of this class
|
|
|
|
|
*/
|
|
|
|
|
const CLASS_NAME = 'classes.model.map.AppNotesMapBuilder';
|
2011-07-14 10:45:20 -04:00
|
|
|
|
2012-10-04 17:54:44 -04:00
|
|
|
/**
|
|
|
|
|
* The database map.
|
|
|
|
|
*/
|
|
|
|
|
private $dbMap;
|
2011-07-14 10:45:20 -04:00
|
|
|
|
2012-10-04 17:54:44 -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-07-14 10:45:20 -04:00
|
|
|
|
2012-10-04 17:54:44 -04:00
|
|
|
/**
|
|
|
|
|
* Gets the databasemap this map builder built.
|
|
|
|
|
*
|
|
|
|
|
* @return the databasemap
|
|
|
|
|
*/
|
|
|
|
|
public function getDatabaseMap()
|
|
|
|
|
{
|
|
|
|
|
return $this->dbMap;
|
|
|
|
|
}
|
2011-07-14 10:45:20 -04:00
|
|
|
|
2012-10-04 17:54:44 -04:00
|
|
|
/**
|
|
|
|
|
* The doBuild() method builds the DatabaseMap
|
|
|
|
|
*
|
|
|
|
|
* @return void
|
|
|
|
|
* @throws PropelException
|
|
|
|
|
*/
|
|
|
|
|
public function doBuild()
|
|
|
|
|
{
|
|
|
|
|
$this->dbMap = Propel::getDatabaseMap('workflow');
|
2011-07-14 10:45:20 -04:00
|
|
|
|
2012-10-04 17:54:44 -04:00
|
|
|
$tMap = $this->dbMap->addTable('APP_NOTES');
|
|
|
|
|
$tMap->setPhpName('AppNotes');
|
2011-07-14 10:45:20 -04:00
|
|
|
|
2012-10-04 17:54:44 -04:00
|
|
|
$tMap->setUseIdGenerator(false);
|
2011-07-14 10:45:20 -04:00
|
|
|
|
2012-10-04 17:54:44 -04:00
|
|
|
$tMap->addColumn('APP_UID', 'AppUid', 'string', CreoleTypes::VARCHAR, true, 32);
|
2011-07-14 10:45:20 -04:00
|
|
|
|
2012-10-04 17:54:44 -04:00
|
|
|
$tMap->addColumn('USR_UID', 'UsrUid', 'string', CreoleTypes::VARCHAR, true, 32);
|
2011-07-14 10:45:20 -04:00
|
|
|
|
2012-10-04 17:54:44 -04:00
|
|
|
$tMap->addColumn('NOTE_DATE', 'NoteDate', 'int', CreoleTypes::TIMESTAMP, true, null);
|
2011-07-14 10:45:20 -04:00
|
|
|
|
2012-10-04 17:54:44 -04:00
|
|
|
$tMap->addColumn('NOTE_CONTENT', 'NoteContent', 'string', CreoleTypes::LONGVARCHAR, true, null);
|
2011-07-14 10:45:20 -04:00
|
|
|
|
2012-10-04 17:54:44 -04:00
|
|
|
$tMap->addColumn('NOTE_TYPE', 'NoteType', 'string', CreoleTypes::VARCHAR, true, 32);
|
2011-07-14 10:45:20 -04:00
|
|
|
|
2012-10-04 17:54:44 -04:00
|
|
|
$tMap->addColumn('NOTE_AVAILABILITY', 'NoteAvailability', 'string', CreoleTypes::VARCHAR, true, 32);
|
2011-07-14 10:45:20 -04:00
|
|
|
|
2012-10-04 17:54:44 -04:00
|
|
|
$tMap->addColumn('NOTE_ORIGIN_OBJ', 'NoteOriginObj', 'string', CreoleTypes::VARCHAR, false, 32);
|
2011-07-14 10:45:20 -04:00
|
|
|
|
2012-10-04 17:54:44 -04:00
|
|
|
$tMap->addColumn('NOTE_AFFECTED_OBJ1', 'NoteAffectedObj1', 'string', CreoleTypes::VARCHAR, false, 32);
|
2011-07-14 10:45:20 -04:00
|
|
|
|
2012-10-04 17:54:44 -04:00
|
|
|
$tMap->addColumn('NOTE_AFFECTED_OBJ2', 'NoteAffectedObj2', 'string', CreoleTypes::VARCHAR, true, 32);
|
2011-07-14 10:45:20 -04:00
|
|
|
|
2012-10-04 17:54:44 -04:00
|
|
|
$tMap->addColumn('NOTE_RECIPIENTS', 'NoteRecipients', 'string', CreoleTypes::LONGVARCHAR, false, null);
|
2011-07-14 10:45:20 -04:00
|
|
|
|
2012-10-04 17:54:44 -04:00
|
|
|
} // doBuild()
|
2011-07-14 10:45:20 -04:00
|
|
|
|
|
|
|
|
} // AppNotesMapBuilder
|