123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- class CcShowRebroadcastTableMap extends TableMap {
-
- const CLASS_NAME = 'airtime.map.CcShowRebroadcastTableMap';
-
- public function initialize()
- {
-
- $this->setName('cc_show_rebroadcast');
- $this->setPhpName('CcShowRebroadcast');
- $this->setClassname('CcShowRebroadcast');
- $this->setPackage('airtime');
- $this->setUseIdGenerator(true);
- $this->setPrimaryKeyMethodInfo('cc_show_rebroadcast_id_seq');
-
- $this->addPrimaryKey('ID', 'DbId', 'INTEGER', true, null, null);
- $this->addColumn('DAY_OFFSET', 'DbDayOffset', 'VARCHAR', true, 255, null);
- $this->addColumn('START_TIME', 'DbStartTime', 'TIME', true, null, null);
- $this->addForeignKey('SHOW_ID', 'DbShowId', 'INTEGER', 'cc_show', 'ID', true, null, null);
-
- }
-
- public function buildRelations()
- {
- $this->addRelation('CcShow', 'CcShow', RelationMap::MANY_TO_ONE, array('show_id' => 'id', ), 'CASCADE', null);
- }
- }
|