]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/DoctrineMigrations/Version20170606155640.php
Merge pull request #4438 from wallabag/dependabot/composer/scheb/two-factor-bundle...
[github/wallabag/wallabag.git] / app / DoctrineMigrations / Version20170606155640.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 wallabag_url from craue_config_setting.
10 * It has been moved into the parameters.yml.
11 */
12 class Version20170606155640 extends WallabagMigration
13 {
14 public function up(Schema $schema)
15 {
16 $apiUserRegistration = $this->container
17 ->get('doctrine.orm.default_entity_manager')
18 ->getConnection()
19 ->fetchArray('SELECT * FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'wallabag_url'");
20
21 $this->skipIf(false === $apiUserRegistration, 'It seems that you already played this migration.');
22
23 $this->addSql('DELETE FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'wallabag_url'");
24 }
25
26 public function down(Schema $schema)
27 {
28 $this->addSql('INSERT INTO ' . $this->getTable('craue_config_setting') . " (name, value, section) VALUES ('wallabag_url', 'wallabag.me', 'misc')");
29 }
30 }