]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Replaced quotes for Postgres 2682/head
authorNicolas Lœuillet <nicolas@loeuillet.org>
Sun, 18 Dec 2016 12:47:25 +0000 (13:47 +0100)
committerNicolas Lœuillet <nicolas@loeuillet.org>
Sun, 18 Dec 2016 12:47:25 +0000 (13:47 +0100)
app/DoctrineMigrations/Version20160911214952.php
app/DoctrineMigrations/Version20161031132655.php
app/DoctrineMigrations/Version20161117071626.php
app/DoctrineMigrations/Version20161122144743.php

index 7b85dc5e5c5ebfe7067ce3b8eb283e2de7b482f5..6ddeb767c85acd23291ee4e1edd3809c6e7fea92 100644 (file)
@@ -32,7 +32,7 @@ class Version20160911214952 extends AbstractMigration implements ContainerAwareI
         $redis = $this->container
             ->get('doctrine.orm.default_entity_manager')
             ->getConnection()
-            ->fetchArray('SELECT * FROM '.$this->getTable('craue_config_setting').' WHERE name = "import_with_redis"');
+            ->fetchArray('SELECT * FROM '.$this->getTable('craue_config_setting')." WHERE name = 'import_with_redis'");
 
         if (false === $redis) {
             $this->addSql('INSERT INTO '.$this->getTable('craue_config_setting')." (name, value, section) VALUES ('import_with_redis', 0, 'import')");
@@ -41,7 +41,7 @@ class Version20160911214952 extends AbstractMigration implements ContainerAwareI
         $rabbitmq = $this->container
             ->get('doctrine.orm.default_entity_manager')
             ->getConnection()
-            ->fetchArray('SELECT * FROM '.$this->getTable('craue_config_setting').' WHERE name = "import_with_rabbitmq"');
+            ->fetchArray('SELECT * FROM '.$this->getTable('craue_config_setting')." WHERE name = 'import_with_rabbitmq'");
 
         if (false === $rabbitmq) {
             $this->addSql('INSERT INTO '.$this->getTable('craue_config_setting')." (name, value, section) VALUES ('import_with_rabbitmq', 0, 'import')");
index 89b660183d87da669972a1e8572440ad4977cb07..770ad2d8e59792111cde48ad3051a71d1036f09b 100644 (file)
@@ -32,7 +32,7 @@ class Version20161031132655 extends AbstractMigration implements ContainerAwareI
         $images = $this->container
             ->get('doctrine.orm.default_entity_manager')
             ->getConnection()
-            ->fetchArray('SELECT * FROM '.$this->getTable('craue_config_setting').' WHERE name = "download_images_enabled"');
+            ->fetchArray('SELECT * FROM '.$this->getTable('craue_config_setting')." WHERE name = 'download_images_enabled'");
 
         $this->skipIf(false !== $images, 'It seems that you already played this migration.');
 
index e65598a9b16d210da178a641f451811798f06792..d864888f1acd15ef3fb1f5e925849f1ec99f670c 100644 (file)
@@ -32,7 +32,7 @@ class Version20161117071626 extends AbstractMigration implements ContainerAwareI
         $share = $this->container
             ->get('doctrine.orm.default_entity_manager')
             ->getConnection()
-            ->fetchArray('SELECT * FROM '.$this->getTable('craue_config_setting').' WHERE name = "share_unmark"');
+            ->fetchArray('SELECT * FROM '.$this->getTable('craue_config_setting')." WHERE name = 'share_unmark'");
 
         if (false === $share) {
             $this->addSql('INSERT INTO '.$this->getTable('craue_config_setting')." (name, value, section) VALUES ('share_unmark', 0, 'entry')");
@@ -41,7 +41,7 @@ class Version20161117071626 extends AbstractMigration implements ContainerAwareI
         $unmark = $this->container
             ->get('doctrine.orm.default_entity_manager')
             ->getConnection()
-            ->fetchArray('SELECT * FROM '.$this->getTable('craue_config_setting').' WHERE name = "unmark_url"');
+            ->fetchArray('SELECT * FROM '.$this->getTable('craue_config_setting')." WHERE name = 'unmark_url'");
 
         if (false === $unmark) {
             $this->addSql('INSERT INTO '.$this->getTable('craue_config_setting')." (name, value, section) VALUES ('unmark_url', 'https://unmark.it', 'entry')");
index 02113031c838fb90cc2a2cab3d39ac41966185ce..388a0e4b0346fdb278f222e4a9bc025fc233010e 100644 (file)
@@ -35,7 +35,7 @@ class Version20161122144743 extends AbstractMigration implements ContainerAwareI
         $access = $this->container
             ->get('doctrine.orm.default_entity_manager')
             ->getConnection()
-            ->fetchArray('SELECT * FROM '.$this->getTable('craue_config_setting').' WHERE name = "restricted_access"');
+            ->fetchArray('SELECT * FROM '.$this->getTable('craue_config_setting')." WHERE name = 'restricted_access'");
 
         $this->skipIf(false !== $access, 'It seems that you already played this migration.');