1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- class CcLiveLogTableMap extends TableMap {
-
- const CLASS_NAME = 'airtime.map.CcLiveLogTableMap';
-
- public function initialize()
- {
-
- $this->setName('cc_live_log');
- $this->setPhpName('CcLiveLog');
- $this->setClassname('CcLiveLog');
- $this->setPackage('airtime');
- $this->setUseIdGenerator(true);
- $this->setPrimaryKeyMethodInfo('cc_live_log_id_seq');
-
- $this->addPrimaryKey('ID', 'DbId', 'INTEGER', true, null, null);
- $this->addColumn('STATE', 'DbState', 'VARCHAR', true, 32, null);
- $this->addColumn('START_TIME', 'DbStartTime', 'TIMESTAMP', true, null, null);
- $this->addColumn('END_TIME', 'DbEndTime', 'TIMESTAMP', false, null, null);
-
- }
-
- public function buildRelations()
- {
- }
- }
|