]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - app/DoctrineMigrations/Version20161106113822.php
Added hardcoded SQL for migration to 2.2
[github/wallabag/wallabag.git] / app / DoctrineMigrations / Version20161106113822.php
index faa2d9fdd7979cdc4a1c1c3fbe6affb4fa5cdf20..de3702a406246e379a19de7bd2e8f9e9452eebc2 100644 (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');
     }
 }