2020-04-14 14:01:14 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Application\Migrations;
|
|
|
|
|
|
|
|
use Doctrine\DBAL\Migrations\SkipMigrationException;
|
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
2024-02-19 00:30:12 +00:00
|
|
|
use Wallabag\Doctrine\WallabagMigration;
|
2020-04-14 14:01:14 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove baggy theme.
|
|
|
|
*/
|
|
|
|
final class Version20200414120227 extends WallabagMigration
|
|
|
|
{
|
|
|
|
public function up(Schema $schema): void
|
|
|
|
{
|
|
|
|
$this->addSql('UPDATE ' . $this->getTable('config', true) . " SET theme = 'material';");
|
|
|
|
}
|
|
|
|
|
|
|
|
public function down(Schema $schema): void
|
|
|
|
{
|
|
|
|
throw new SkipMigrationException('Not possible ... ');
|
|
|
|
}
|
|
|
|
}
|