1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-09-15 18:57:05 +00:00

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
No known key found for this signature in database
GPG key ID: BDC1EFB5CA0145F2
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');
}
}