CC-2994: Upgrade: database change for SoundCloud upload
- changed soundcloud_link_to_file length to 4096
This commit is contained in:
parent
dd0c03570c
commit
6eff9d124e
4 changed files with 4 additions and 4 deletions
|
@ -15,7 +15,7 @@ class Version20111102142811 extends AbstractMigration
|
|||
|
||||
// add soundcloud_link_to_file
|
||||
$cc_files = $schema->getTable('cc_files');
|
||||
$cc_files->addColumn('soundcloud_link_to_file', 'string', array('length' => 255, 'notnull' => 0, 'default'=> NULL));
|
||||
$cc_files->addColumn('soundcloud_link_to_file', 'string', array('length' => 4096, 'notnull' => 0, 'default'=> NULL));
|
||||
}
|
||||
|
||||
public function down(Schema $schema)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue