2017-04-20 13:45:43 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Application\Migrations;
|
|
|
|
|
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
2018-06-14 11:43:09 +00:00
|
|
|
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
|
2017-04-20 13:45:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove download_pictures in craue_config_setting.
|
|
|
|
*/
|
2018-06-14 11:43:09 +00:00
|
|
|
class Version20170420134133 extends WallabagMigration
|
2017-04-20 13:45:43 +00:00
|
|
|
{
|
|
|
|
public function up(Schema $schema)
|
|
|
|
{
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->addSql('DELETE FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'download_pictures';");
|
2017-04-20 13:45:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function down(Schema $schema)
|
|
|
|
{
|
|
|
|
$downloadPictures = $this->container
|
|
|
|
->get('doctrine.orm.default_entity_manager')
|
|
|
|
->getConnection()
|
2017-07-01 07:52:38 +00:00
|
|
|
->fetchArray('SELECT * FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'download_pictures'");
|
2017-04-20 13:45:43 +00:00
|
|
|
|
|
|
|
$this->skipIf(false !== $downloadPictures, 'It seems that you already played this migration.');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->addSql('INSERT INTO ' . $this->getTable('craue_config_setting') . " (name, value, section) VALUES ('download_pictures', '1', 'entry')");
|
|
|
|
}
|
2017-04-20 13:45:43 +00:00
|
|
|
}
|