mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-23 01:21:03 +00:00
b3099f68c5
Also update these deps to be compatible with latest Doctrine version: - `friendsofsymfony/oauth-server-bundle` - `lexik/form-filter-bundle` - `dama/doctrine-test-bundle`
26 lines
724 B
PHP
26 lines
724 B
PHP
<?php
|
|
|
|
namespace Application\Migrations;
|
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
|
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
|
|
|
|
/**
|
|
* Added list_mode in user config.
|
|
*/
|
|
class Version20161128084725 extends WallabagMigration
|
|
{
|
|
public function up(Schema $schema): void
|
|
{
|
|
$configTable = $schema->getTable($this->getTable('config'));
|
|
$this->skipIf($configTable->hasColumn('list_mode'), 'It seems that you already played this migration.');
|
|
|
|
$configTable->addColumn('list_mode', 'integer', ['notnull' => false]);
|
|
}
|
|
|
|
public function down(Schema $schema): void
|
|
{
|
|
$configTable = $schema->getTable($this->getTable('config'));
|
|
$configTable->dropColumn('list_mode');
|
|
}
|
|
}
|