]> git.immae.eu Git - github/wallabag/wallabag.git/blame - app/DoctrineMigrations/Version20170420134133.php
Fixed migrations with dash into db name
[github/wallabag/wallabag.git] / app / DoctrineMigrations / Version20170420134133.php
CommitLineData
21d955f7
NL
1<?php
2
3namespace Application\Migrations;
4
21d955f7 5use Doctrine\DBAL\Schema\Schema;
bfe7a692 6use Wallabag\CoreBundle\Doctrine\WallabagMigration;
21d955f7
NL
7
8/**
9 * Remove download_pictures in craue_config_setting.
10 */
bfe7a692 11class Version20170420134133 extends WallabagMigration
21d955f7 12{
21d955f7
NL
13 /**
14 * @param Schema $schema
15 */
16 public function up(Schema $schema)
17 {
f808b016 18 $this->addSql('DELETE FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'download_pictures';");
21d955f7
NL
19 }
20
21 /**
22 * @param Schema $schema
23 */
24 public function down(Schema $schema)
25 {
26 $downloadPictures = $this->container
27 ->get('doctrine.orm.default_entity_manager')
28 ->getConnection()
f808b016 29 ->fetchArray('SELECT * FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'download_pictures'");
21d955f7
NL
30
31 $this->skipIf(false !== $downloadPictures, 'It seems that you already played this migration.');
32
f808b016
JB
33 $this->addSql('INSERT INTO ' . $this->getTable('craue_config_setting') . " (name, value, section) VALUES ('download_pictures', '1', 'entry')");
34 }
21d955f7 35}