]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/DoctrineMigrations/Version20170420134133.php
Merge pull request #4151 from ldidry/fix-4060
[github/wallabag/wallabag.git] / app / DoctrineMigrations / Version20170420134133.php
1 <?php
2
3 namespace Application\Migrations;
4
5 use Doctrine\DBAL\Schema\Schema;
6 use Wallabag\CoreBundle\Doctrine\WallabagMigration;
7
8 /**
9 * Remove download_pictures in craue_config_setting.
10 */
11 class Version20170420134133 extends WallabagMigration
12 {
13 public function up(Schema $schema)
14 {
15 $this->addSql('DELETE FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'download_pictures';");
16 }
17
18 public function down(Schema $schema)
19 {
20 $downloadPictures = $this->container
21 ->get('doctrine.orm.default_entity_manager')
22 ->getConnection()
23 ->fetchArray('SELECT * FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'download_pictures'");
24
25 $this->skipIf(false !== $downloadPictures, 'It seems that you already played this migration.');
26
27 $this->addSql('INSERT INTO ' . $this->getTable('craue_config_setting') . " (name, value, section) VALUES ('download_pictures', '1', 'entry')");
28 }
29 }