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

chaning column name to playout_status
This commit is contained in:
Naomi Aro 2012-03-02 12:22:08 +01:00
parent d03d01bce9
commit 6c749075ac
9 changed files with 56 additions and 56 deletions

View file

@ -49,7 +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);
$this->addColumn('PLAYOUT_STATUS', 'DbPlayoutStatus', 'SMALLINT', true, null, 1);
// validators
} // initialize()