]>
Commit | Line | Data |
---|---|---|
e01a3c98 JB |
1 | <?php |
2 | ||
3 | namespace Application\Migrations; | |
4 | ||
e01a3c98 | 5 | use Doctrine\DBAL\Schema\Schema; |
bfe7a692 | 6 | use Wallabag\CoreBundle\Doctrine\WallabagMigration; |
e01a3c98 | 7 | |
b87f1712 | 8 | /** |
01736b5a | 9 | * Added settings for RabbitMQ and Redis imports. |
b87f1712 | 10 | */ |
bfe7a692 | 11 | class Version20160911214952 extends WallabagMigration |
e01a3c98 | 12 | { |
e01a3c98 JB |
13 | public function up(Schema $schema) |
14 | { | |
31fec5f3 JB |
15 | $redis = $this->container |
16 | ->get('doctrine.orm.default_entity_manager') | |
17 | ->getConnection() | |
f808b016 | 18 | ->fetchArray('SELECT * FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'import_with_redis'"); |
31fec5f3 JB |
19 | |
20 | if (false === $redis) { | |
f808b016 | 21 | $this->addSql('INSERT INTO ' . $this->getTable('craue_config_setting') . " (name, value, section) VALUES ('import_with_redis', 0, 'import')"); |
31fec5f3 JB |
22 | } |
23 | ||
24 | $rabbitmq = $this->container | |
25 | ->get('doctrine.orm.default_entity_manager') | |
26 | ->getConnection() | |
f808b016 | 27 | ->fetchArray('SELECT * FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'import_with_rabbitmq'"); |
31fec5f3 JB |
28 | |
29 | if (false === $rabbitmq) { | |
f808b016 | 30 | $this->addSql('INSERT INTO ' . $this->getTable('craue_config_setting') . " (name, value, section) VALUES ('import_with_rabbitmq', 0, 'import')"); |
31fec5f3 JB |
31 | } |
32 | ||
33 | $this->skipIf(false !== $rabbitmq && false !== $redis, 'It seems that you already played this migration.'); | |
e01a3c98 JB |
34 | } |
35 | ||
e01a3c98 JB |
36 | public function down(Schema $schema) |
37 | { | |
f808b016 JB |
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 | } | |
e01a3c98 | 41 | } |