mirror of
https://github.com/wallabag/wallabag.git
synced 2024-10-31 22:28:54 +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`
33 lines
949 B
PHP
33 lines
949 B
PHP
<?php
|
|
|
|
namespace Application\Migrations;
|
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
|
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
|
|
|
|
/**
|
|
* Added action_mark_as_read field on config table.
|
|
*/
|
|
class Version20161106113822 extends WallabagMigration
|
|
{
|
|
public function up(Schema $schema): void
|
|
{
|
|
$configTable = $schema->getTable($this->getTable('config'));
|
|
|
|
$this->skipIf($configTable->hasColumn('action_mark_as_read'), 'It seems that you already played this migration.');
|
|
|
|
$configTable->addColumn('action_mark_as_read', 'integer', [
|
|
'default' => 0,
|
|
'notnull' => false,
|
|
]);
|
|
}
|
|
|
|
public function down(Schema $schema): void
|
|
{
|
|
$configTable = $schema->getTable($this->getTable('config'));
|
|
|
|
$this->skipIf(!$configTable->hasColumn('action_mark_as_read'), 'It seems that you already played this migration.');
|
|
|
|
$configTable->dropColumn('action_mark_as_read');
|
|
}
|
|
}
|