wallabag/migrations/Version20200414120227.php

24 lines
529 B
PHP
Raw Permalink Normal View History

<?php
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
2024-03-30 00:17:41 +00:00
use Doctrine\Migrations\Exception\SkipMigration;
2024-02-19 00:30:12 +00:00
use Wallabag\Doctrine\WallabagMigration;
/**
* 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
{
2024-03-30 00:17:41 +00:00
throw new SkipMigration('Not possible ... ');
}
}