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