From cc806d9b7b854e554399e2716fd8f15e491e23ed Mon Sep 17 00:00:00 2001 From: Naomi Aro Date: Wed, 11 Apr 2012 11:18:28 +0200 Subject: [PATCH] CC-3605 : Create 2.1 upgrades --- .../common/Version20120411102907.php | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 install_minimal/upgrades/airtime-2.1.0/common/Version20120411102907.php diff --git a/install_minimal/upgrades/airtime-2.1.0/common/Version20120411102907.php b/install_minimal/upgrades/airtime-2.1.0/common/Version20120411102907.php new file mode 100644 index 000000000..8811990e1 --- /dev/null +++ b/install_minimal/upgrades/airtime-2.1.0/common/Version20120411102907.php @@ -0,0 +1,39 @@ +_addSql("ALTER TABLE cc_files ALTER COLUMN length TYPE interval"); + + $this->_addSql("ALTER TABLE cc_playlistcontents ALTER COLUMN cuein TYPE interval"); + $this->_addSql("ALTER TABLE cc_playlistcontents ALTER COLUMN cueout TYPE interval"); + $this->_addSql("ALTER TABLE cc_playlistcontents ALTER COLUMN cliplength TYPE interval"); + + $this->_addSql("ALTER TABLE cc_schedule ALTER COLUMN cue_in TYPE interval"); + $this->_addSql("ALTER TABLE cc_schedule ALTER COLUMN cue_out TYPE interval"); + $this->_addSql("ALTER TABLE cc_schedule ALTER COLUMN clip_length TYPE interval"); + + //remove old columns from cc_schedule that deal with groups or playlists. + $this->_addSql("ALTER TABLE cc_schedule DROP COLUMN group_id"); + $this->_addSql("ALTER TABLE cc_schedule DROP COLUMN schedule_group_played"); + $this->_addSql("ALTER TABLE cc_schedule DROP COLUMN playlist_id"); + + $this->_addSql("ALTER TABLE cc_schedule ADD playout_status integer DEFAULT 1 NOT NULL"); + } + + public function down(Schema $schema) + { + + } +} \ No newline at end of file