1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-01 17:38:38 +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

@ -48,6 +48,9 @@ class Version20161106113822 extends AbstractMigration implements ContainerAwareI
public function down(Schema $schema)
{
$configTable = $schema->getTable($this->getTable('config'));
$userTable->dropColumn('action_mark_as_read');
$this->skipIf(!$configTable->hasColumn('action_mark_as_read'), 'It seems that you already played this migration.');
$configTable->dropColumn('action_mark_as_read');
}
}