CC-3369 : Ability to identify tracks that are actually inside a show in the schedule table

This commit is contained in:
Naomi Aro 2012-03-01 14:59:06 +01:00
parent f8608f3511
commit 0f9800a6bd
9 changed files with 212 additions and 17 deletions

View file

@ -49,6 +49,7 @@ class CcScheduleTableMap extends TableMap {
$this->addColumn('CUE_OUT', 'DbCueOut', 'VARCHAR', false, null, '00:00:00');
$this->addColumn('MEDIA_ITEM_PLAYED', 'DbMediaItemPlayed', 'BOOLEAN', false, null, false);
$this->addForeignKey('INSTANCE_ID', 'DbInstanceId', 'INTEGER', 'cc_show_instances', 'ID', true, null, null);
$this->addColumn('STATUS', 'DbStatus', 'SMALLINT', true, null, 1);
// validators
} // initialize()