wallabag/migrations/Version20170420134133.php

30 lines
985 B
PHP
Raw Permalink Normal View History

<?php
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
2024-02-19 00:30:12 +00:00
use Wallabag\Doctrine\WallabagMigration;
/**
* Remove download_pictures in craue_config_setting.
*/
class Version20170420134133 extends WallabagMigration
{
public function up(Schema $schema): void
{
2017-07-01 07:52:38 +00:00
$this->addSql('DELETE FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'download_pictures';");
}
public function down(Schema $schema): void
{
$downloadPictures = $this->container
->get('doctrine.orm.default_entity_manager')
->getConnection()
->fetchOne('SELECT * FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'download_pictures'");
$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')");
}
}