Merge branch 'feature/autodj' of https://github.com/radiorabe/libretime into Robbt-install-fix-python-ssl-workaround

This commit is contained in:
Robb Ebright 2017-03-11 19:11:20 +00:00
commit 07d7f3ef5e
65 changed files with 1610 additions and 125 deletions

View file

@ -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"];

View file

@ -0,0 +1,3 @@
ALTER TABLE cc_show_instances DROP COLUMN IF EXISTS autoplaylist_built;
ALTER TABLE cc_show DROP COLUMN IF EXISTS has_autoplaylist;
ALTER TABLE cc_show DROP COLUMN IF EXISTS autoplaylist_id;

View file

@ -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;