]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/DoctrineMigrations/Version20160911214952.php
Merge pull request #4438 from wallabag/dependabot/composer/scheb/two-factor-bundle...
[github/wallabag/wallabag.git] / app / DoctrineMigrations / Version20160911214952.php
1 <?php
2
3 namespace Application\Migrations;
4
5 use Doctrine\DBAL\Schema\Schema;
6 use Wallabag\CoreBundle\Doctrine\WallabagMigration;
7
8 /**
9 * Added settings for RabbitMQ and Redis imports.
10 */
11 class Version20160911214952 extends WallabagMigration
12 {
13 public function up(Schema $schema)
14 {
15 $redis = $this->container
16 ->get('doctrine.orm.default_entity_manager')
17 ->getConnection()
18 ->fetchArray('SELECT * FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'import_with_redis'");
19
20 if (false === $redis) {
21 $this->addSql('INSERT INTO ' . $this->getTable('craue_config_setting') . " (name, value, section) VALUES ('import_with_redis', 0, 'import')");
22 }
23
24 $rabbitmq = $this->container
25 ->get('doctrine.orm.default_entity_manager')
26 ->getConnection()
27 ->fetchArray('SELECT * FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'import_with_rabbitmq'");
28
29 if (false === $rabbitmq) {
30 $this->addSql('INSERT INTO ' . $this->getTable('craue_config_setting') . " (name, value, section) VALUES ('import_with_rabbitmq', 0, 'import')");
31 }
32
33 $this->skipIf(false !== $rabbitmq && false !== $redis, 'It seems that you already played this migration.');
34 }
35
36 public function down(Schema $schema)
37 {
38 $this->addSql('DELETE FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'import_with_redis';");
39 $this->addSql('DELETE FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'import_with_rabbitmq';");
40 }
41 }