aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/DoctrineMigrations/Version20161122144743.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-12-18 13:47:25 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-12-18 13:47:25 +0100
commitbea8d754171321fa6960ae8916da2a37667e7705 (patch)
tree1468e97a87d14b7e08dd77d0612edbd9ee639880 /app/DoctrineMigrations/Version20161122144743.php
parent31fec5f363b915fb694d9a6e925d02da1e83b508 (diff)
downloadwallabag-bea8d754171321fa6960ae8916da2a37667e7705.tar.gz
wallabag-bea8d754171321fa6960ae8916da2a37667e7705.tar.zst
wallabag-bea8d754171321fa6960ae8916da2a37667e7705.zip
Replaced quotes for Postgres
Diffstat (limited to 'app/DoctrineMigrations/Version20161122144743.php')
-rw-r--r--app/DoctrineMigrations/Version20161122144743.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/DoctrineMigrations/Version20161122144743.php b/app/DoctrineMigrations/Version20161122144743.php
index 02113031..388a0e4b 100644
--- a/app/DoctrineMigrations/Version20161122144743.php
+++ b/app/DoctrineMigrations/Version20161122144743.php
@@ -35,7 +35,7 @@ class Version20161122144743 extends AbstractMigration implements ContainerAwareI
35 $access = $this->container 35 $access = $this->container
36 ->get('doctrine.orm.default_entity_manager') 36 ->get('doctrine.orm.default_entity_manager')
37 ->getConnection() 37 ->getConnection()
38 ->fetchArray('SELECT * FROM '.$this->getTable('craue_config_setting').' WHERE name = "restricted_access"'); 38 ->fetchArray('SELECT * FROM '.$this->getTable('craue_config_setting')." WHERE name = 'restricted_access'");
39 39
40 $this->skipIf(false !== $access, 'It seems that you already played this migration.'); 40 $this->skipIf(false !== $access, 'It seems that you already played this migration.');
41 41