CC-2867: separating Doctrine upgrade into 3 files

- done
This commit is contained in:
james 2011-09-25 17:18:26 -04:00
parent 5cc7de95ee
commit b8c2c5dfb1
5 changed files with 61 additions and 34 deletions

View file

@ -18,19 +18,6 @@ class Version20110829143306 extends AbstractMigration
$cc_stream_setting->setPrimaryKey(array('keyname'));
//end create cc_stream_setting table
// add soundcloud_id, soundcloud_error_code, soundcloud_error_msg columns to cc_files
$cc_files = $schema->getTable('cc_files');
$cc_files->addColumn('soundcloud_id', 'integer', array('notnull' => 0, 'default'=> NULL));
$cc_files->addColumn('soundcloud_error_code', 'integer', array('notnull' => 0, 'default'=> NULL));
$cc_files->addColumn('soundcloud_error_msg', 'string', array('length' => 255, 'notnull' => 0, 'default'=> NULL));
}
public function postUp(){
// move soundcloud_id from cc_show_instances to cc_files
$this->_addSql("update cc_files as cf set soundcloud_id = csi.soundcloud_id
from cc_show_instances as csi
where csi.file_id = cf.id and file_id is not NULL");
}
public function down(Schema $schema)