wallabag/app/DoctrineMigrations/Version20170606155640.php

31 lines
1 KiB
PHP
Raw Normal View History

2017-06-06 14:04:51 +00:00
<?php
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
2017-06-06 14:04:51 +00:00
/**
2017-06-08 17:15:33 +00:00
* Remove wallabag_url from craue_config_setting.
2017-07-01 07:52:38 +00:00
* It has been moved into the parameters.yml.
2017-06-06 14:04:51 +00:00
*/
class Version20170606155640 extends WallabagMigration
2017-06-06 14:04:51 +00:00
{
public function up(Schema $schema): void
2017-06-06 14:04:51 +00:00
{
$apiUserRegistration = $this->container
->get('doctrine.orm.default_entity_manager')
->getConnection()
->fetchOne('SELECT * FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'wallabag_url'");
2017-06-06 14:04:51 +00:00
$this->skipIf(false === $apiUserRegistration, 'It seems that you already played this migration.');
2017-07-01 07:52:38 +00:00
$this->addSql('DELETE FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'wallabag_url'");
2017-06-06 14:04:51 +00:00
}
public function down(Schema $schema): void
2017-06-06 14:04:51 +00:00
{
2017-07-01 07:52:38 +00:00
$this->addSql('INSERT INTO ' . $this->getTable('craue_config_setting') . " (name, value, section) VALUES ('wallabag_url', 'wallabag.me', 'misc')");
}
2017-06-06 14:04:51 +00:00
}