]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - app/DoctrineMigrations/Version20161106113822.php
Replaced abortIf with skipIf
[github/wallabag/wallabag.git] / app / DoctrineMigrations / Version20161106113822.php
index a5401b2c35506fd138a4d6daff5ec170e8713569..5e3fd5626599fba53f472e1c6453db2224425158 100644 (file)
@@ -39,7 +39,7 @@ class Version20161106113822 extends AbstractMigration implements ContainerAwareI
      */
     public function down(Schema $schema)
     {
-        $this->abortIf($this->connection->getDatabasePlatform()->getName() != 'sqlite', 'This down migration can\'t be executed on SQLite databases, because SQLite don\'t support DROP COLUMN.');
+        $this->skipIf($this->connection->getDatabasePlatform()->getName() != 'sqlite', 'This down migration can\'t be executed on SQLite databases, because SQLite don\'t support DROP COLUMN.');
 
         $this->addSql('ALTER TABLE '.$this->getTable('config').' DROP action_mark_as_read');
     }