diff options
author | Thomas Citharel <tcit@tcit.fr> | 2016-10-15 14:42:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-15 14:42:46 +0200 |
commit | 76f2123defe40d7315597938f182fed386707765 (patch) | |
tree | 56760496bdb917314dfef54306411fddbf1c21e2 /app/DoctrineMigrations/Version20160911214952.php | |
parent | 7131f94274a7a4fb15e822d3f8ef5fa4d9594144 (diff) | |
parent | 4c79c51f998fbec0caba3cf20291a9a54916af09 (diff) | |
download | wallabag-76f2123defe40d7315597938f182fed386707765.tar.gz wallabag-76f2123defe40d7315597938f182fed386707765.tar.zst wallabag-76f2123defe40d7315597938f182fed386707765.zip |
Merge pull request #2412 from wallabag/fix-postgres-migration
Fix PostgreSQL migrations
Diffstat (limited to 'app/DoctrineMigrations/Version20160911214952.php')
-rw-r--r-- | app/DoctrineMigrations/Version20160911214952.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/DoctrineMigrations/Version20160911214952.php b/app/DoctrineMigrations/Version20160911214952.php index 35809cec..f14f7bc6 100644 --- a/app/DoctrineMigrations/Version20160911214952.php +++ b/app/DoctrineMigrations/Version20160911214952.php | |||
@@ -29,8 +29,8 @@ class Version20160911214952 extends AbstractMigration implements ContainerAwareI | |||
29 | */ | 29 | */ |
30 | public function up(Schema $schema) | 30 | public function up(Schema $schema) |
31 | { | 31 | { |
32 | $this->addSql('INSERT INTO `'.$this->getTable('craue_config_setting').'` (`name`, `value`, `section`) VALUES (\'import_with_redis\', \'0\', \'import\')'); | 32 | $this->addSql('INSERT INTO "'.$this->getTable('craue_config_setting').'" (name, value, section) VALUES (\'import_with_redis\', \'0\', \'import\')'); |
33 | $this->addSql('INSERT INTO `'.$this->getTable('craue_config_setting').'` (`name`, `value`, `section`) VALUES (\'import_with_rabbitmq\', \'0\', \'import\')'); | 33 | $this->addSql('INSERT INTO "'.$this->getTable('craue_config_setting').'" (name, value, section) VALUES (\'import_with_rabbitmq\', \'0\', \'import\')'); |
34 | } | 34 | } |
35 | 35 | ||
36 | /** | 36 | /** |