]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Fix migration 2547/head
authorJeremy Benoist <jeremy.benoist@gmail.com>
Thu, 17 Nov 2016 07:05:15 +0000 (08:05 +0100)
committerJeremy Benoist <jeremy.benoist@gmail.com>
Thu, 17 Nov 2016 07:05:15 +0000 (08:05 +0100)
app/DoctrineMigrations/Version20161106113822.php
app/DoctrineMigrations/Version20161117071626.php [moved from app/DoctrineMigrations/Version20161109150755.php with 57% similarity]

index 41e64a4a17b56a04a9e6490b06eef7570236bcae..edca54f5d732348dfb277362fffc22da52adadcf 100644 (file)
@@ -4,8 +4,10 @@ namespace Application\Migrations;
 
 use Doctrine\DBAL\Migrations\AbstractMigration;
 use Doctrine\DBAL\Schema\Schema;
+use Symfony\Component\DependencyInjection\ContainerAwareInterface;
+use Symfony\Component\DependencyInjection\ContainerInterface;
 
-class Version20161106113822 extends AbstractMigration
+class Version20161106113822 extends AbstractMigration implements ContainerAwareInterface
 {
     /**
      * @var ContainerInterface
@@ -27,7 +29,7 @@ class Version20161106113822 extends AbstractMigration
      */
     public function up(Schema $schema)
     {
-        $this->addSql('ALTER TABLE "'.$this->getTable('config').'" ADD action_mark_as_read INT DEFAULT 0');
+        $this->addSql('ALTER TABLE '.$this->getTable('config').' ADD action_mark_as_read INT DEFAULT 0');
     }
 
     /**
@@ -37,6 +39,6 @@ class Version20161106113822 extends AbstractMigration
     {
         $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->addSql('ALTER TABLE "'.$this->getTable('config').'" DROP action_mark_as_read');
+        $this->addSql('ALTER TABLE '.$this->getTable('config').' DROP action_mark_as_read');
     }
 }
similarity index 57%
rename from app/DoctrineMigrations/Version20161109150755.php
rename to app/DoctrineMigrations/Version20161117071626.php
index e4d269c49b830154ac8312def7a1fd68719f3b53..9ae55b5f3dda8577e77a5326dfd26cf27aa9b561 100644 (file)
@@ -7,34 +7,38 @@ use Doctrine\DBAL\Schema\Schema;
 use Symfony\Component\DependencyInjection\ContainerAwareInterface;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 
-class Version20161031132655 extends AbstractMigration implements ContainerAwareInterface
+class Version20161117071626 extends AbstractMigration implements ContainerAwareInterface
 {
     /**
      * @var ContainerInterface
      */
     private $container;
+
     public function setContainer(ContainerInterface $container = null)
     {
         $this->container = $container;
     }
+
     private function getTable($tableName)
     {
         return $this->container->getParameter('database_table_prefix') . $tableName;
     }
+
     /**
      * @param Schema $schema
      */
     public function up(Schema $schema)
     {
-        $this->addSql("INSERT INTO \"".$this->getTable('craue_config_setting')."\" (name, value, section) VALUES ('share_unmark', 0, 'entry')");
-        $this->addSql("INSERT INTO \"".$this->getTable('craue_config_setting')."\" (name, value, section) VALUES ('unmark_url', 'https://unmark.it', 'entry')");
+        $this->addSql("INSERT INTO ".$this->getTable('craue_config_setting')." (name, value, section) VALUES ('share_unmark', 0, 'entry')");
+        $this->addSql("INSERT INTO ".$this->getTable('craue_config_setting')." (name, value, section) VALUES ('unmark_url', 'https://unmark.it', 'entry')");
     }
+
     /**
      * @param Schema $schema
      */
     public function down(Schema $schema)
     {
-        $this->addSql("DELETE FROM \"".$this->getTable('craue_config_setting')."\" WHERE name = 'share_unmark';");
-        $this->addSql("DELETE FROM \"".$this->getTable('craue_config_setting')."\" WHERE name = 'unmark_url';");
+        $this->addSql("DELETE FROM ".$this->getTable('craue_config_setting')." WHERE name = 'share_unmark';");
+        $this->addSql("DELETE FROM ".$this->getTable('craue_config_setting')." WHERE name = 'unmark_url';");
     }
 }