diff --git a/install_minimal/upgrades/airtime-2.1.0/common/Version20120402103944.php b/install_minimal/upgrades/airtime-2.1.0/common/Version20120402103944.php index 61b341b68..3d78649d1 100644 --- a/install_minimal/upgrades/airtime-2.1.0/common/Version20120402103944.php +++ b/install_minimal/upgrades/airtime-2.1.0/common/Version20120402103944.php @@ -15,8 +15,6 @@ class Version20120402103944 extends AbstractMigration $cc_files = $schema->getTable('cc_files'); $cc_files->addColumn('file_exists', 'boolean', array('default'=> 'true')); - - //$cc_files->removeForeignKey('cc_music_dirs_folder_fkey'); $cc_files->addNamedForeignKeyConstraint('cc_music_dirs_folder_fkey', $cc_music_dirs, array('directory'), array('id')); $cc_files->addIndex(array('file_exists'), 'cc_files_file_exists_idx'); } diff --git a/install_minimal/upgrades/airtime-2.1.0/common/Version20120403143635.php b/install_minimal/upgrades/airtime-2.1.0/common/Version20120403143635.php new file mode 100644 index 000000000..6ea644f31 --- /dev/null +++ b/install_minimal/upgrades/airtime-2.1.0/common/Version20120403143635.php @@ -0,0 +1,23 @@ +getTable('cc_show'); + $cc_show->addColumn('live_stream_using_airtime_auth', 'boolean', array('default'=> 'false')); + $cc_show->addColumn('live_stream_using_custom_auth', 'boolean', array('default'=> 'false')); + $cc_show->addColumn('live_stream_user', 'string', array('length' => 255)); + $cc_show->addColumn('live_stream_pass', 'string', array('length' => 255)); + } + + public function down(Schema $schema) + { + + } +} \ No newline at end of file