Added hardcoded SQL for migration to 2.2

This commit is contained in:
Nicolas Lœuillet
2017-01-23 14:16:00 +01:00
parent b87f171233
commit 4acbeb9371
7 changed files with 840 additions and 17 deletions

View File

@ -47,7 +47,10 @@ class Version20161118134328 extends AbstractMigration implements ContainerAwareI
*/
public function down(Schema $schema)
{
$userTable = $schema->getTable($this->getTable('entry'));
$userTable->dropColumn('http_status');
$entryTable = $schema->getTable($this->getTable('entry'));
$this->skipIf(!$entryTable->hasColumn('http_status'), 'It seems that you already played this migration.');
$entryTable->dropColumn('http_status');
}
}