]> git.immae.eu Git - github/wallabag/wallabag.git/blame - app/DoctrineMigrations/Version20161031132655.php
Merge pull request #4438 from wallabag/dependabot/composer/scheb/two-factor-bundle...
[github/wallabag/wallabag.git] / app / DoctrineMigrations / Version20161031132655.php
CommitLineData
aedd6ca0
JB
1<?php
2
3namespace Application\Migrations;
4
aedd6ca0 5use Doctrine\DBAL\Schema\Schema;
bfe7a692 6use Wallabag\CoreBundle\Doctrine\WallabagMigration;
aedd6ca0 7
b87f1712 8/**
01736b5a 9 * Added the internal setting to enable/disable downloading pictures.
b87f1712 10 */
bfe7a692 11class Version20161031132655 extends WallabagMigration
aedd6ca0 12{
aedd6ca0
JB
13 public function up(Schema $schema)
14 {
31fec5f3
JB
15 $images = $this->container
16 ->get('doctrine.orm.default_entity_manager')
17 ->getConnection()
f808b016 18 ->fetchArray('SELECT * FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'download_images_enabled'");
31fec5f3
JB
19
20 $this->skipIf(false !== $images, 'It seems that you already played this migration.');
21
f808b016 22 $this->addSql('INSERT INTO ' . $this->getTable('craue_config_setting') . " (name, value, section) VALUES ('download_images_enabled', 0, 'misc')");
aedd6ca0
JB
23 }
24
aedd6ca0
JB
25 public function down(Schema $schema)
26 {
f808b016
JB
27 $this->addSql('DELETE FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'download_images_enabled';");
28 }
aedd6ca0 29}