]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - app/DoctrineMigrations/Version20161128084725.php
Add a real configuration for CS-Fixer
[github/wallabag/wallabag.git] / app / DoctrineMigrations / Version20161128084725.php
index 347a4256b3781242b35fd9609fc6d488f0bc1294..497a9f216dffd26a23fef7307f49dce158b94b0d 100644 (file)
@@ -8,7 +8,7 @@ use Symfony\Component\DependencyInjection\ContainerAwareInterface;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 
 /**
- * Added view_mode in user config.
+ * Added list_mode in user config.
  */
 class Version20161128084725 extends AbstractMigration implements ContainerAwareInterface
 {
@@ -22,20 +22,15 @@ class Version20161128084725 extends AbstractMigration implements ContainerAwareI
         $this->container = $container;
     }
 
-    private function getTable($tableName)
-    {
-        return $this->container->getParameter('database_table_prefix').$tableName;
-    }
-
     /**
      * @param Schema $schema
      */
     public function up(Schema $schema)
     {
         $configTable = $schema->getTable($this->getTable('config'));
-        $this->skipIf($configTable->hasColumn('view_mode'), 'It seems that you already played this migration.');
+        $this->skipIf($configTable->hasColumn('list_mode'), 'It seems that you already played this migration.');
 
-        $configTable->addColumn('view_mode', 'integer');
+        $configTable->addColumn('list_mode', 'integer', ['notnull' => false]);
     }
 
     /**
@@ -44,6 +39,11 @@ class Version20161128084725 extends AbstractMigration implements ContainerAwareI
     public function down(Schema $schema)
     {
         $configTable = $schema->getTable($this->getTable('config'));
-        $configTable->dropColumn('view_mode');
+        $configTable->dropColumn('list_mode');
+    }
+
+    private function getTable($tableName)
+    {
+        return $this->container->getParameter('database_table_prefix') . $tableName;
     }
 }