Added AutoPlaylist Functionality to Show Scheduler enabling shows to have tracks added automatically.
This commit is contained in:
parent
e3785e25f9
commit
32a1a66378
29 changed files with 1535 additions and 47 deletions
|
@ -622,6 +622,7 @@ class ScheduleController extends Zend_Controller_Action
|
|||
}
|
||||
|
||||
$this->view->what = $forms["what"];
|
||||
$this->view->autoplaylist = $forms["autoplaylist"];
|
||||
$this->view->when = $forms["when"];
|
||||
$this->view->repeats = $forms["repeats"];
|
||||
$this->view->live = $forms["live"];
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
ALTER TABLE cc_show ADD COLUMN has_autoplaylist boolean default 'f' NOT NULL
|
||||
ALTER TABLE cc_show ADD COLUMN autoplaylist_id integer DEFAULT NULL
|
||||
ALTER TABLE cc_show_instances ADD COLUMN autoplaylist_built boolean default 'f' NOT NULL
|
Loading…
Add table
Add a link
Reference in a new issue