diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-10-23 12:35:57 +0200 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-10-23 12:35:57 +0200 |
commit | 5ce1528953998ee2957cd548ee123870b82f4079 (patch) | |
tree | 0260d0c21d3646660d2350af557ee24934dc3a7b /app/DoctrineMigrations/Version20160911214952.php | |
parent | 88d5d94dcbd658fa3d45011e19119f31cd03d2c8 (diff) | |
download | wallabag-5ce1528953998ee2957cd548ee123870b82f4079.tar.gz wallabag-5ce1528953998ee2957cd548ee123870b82f4079.tar.zst wallabag-5ce1528953998ee2957cd548ee123870b82f4079.zip |
Fix 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..3f988ccf 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 | /** |