changed back to old schedule id to test if playback works now.

This commit is contained in:
naomiaro 2011-02-06 15:31:36 -05:00
parent ebb43857f6
commit 75eea94641
7 changed files with 21 additions and 34 deletions

View file

@ -35,10 +35,9 @@ class CcScheduleTableMap extends TableMap {
$this->setPhpName('CcSchedule');
$this->setClassname('CcSchedule');
$this->setPackage('airtime');
$this->setUseIdGenerator(true);
$this->setPrimaryKeyMethodInfo('cc_schedule_id_seq');
$this->setUseIdGenerator(false);
// columns
$this->addPrimaryKey('ID', 'DbId', 'INTEGER', true, null, null);
$this->addPrimaryKey('ID', 'DbId', 'BIGINT', true, null, null);
$this->addColumn('PLAYLIST_ID', 'DbPlaylistId', 'INTEGER', true, null, null);
$this->addColumn('STARTS', 'DbStarts', 'TIMESTAMP', true, null, null);
$this->addColumn('ENDS', 'DbEnds', 'TIMESTAMP', true, null, null);