3 namespace Application\Migrations
;
5 use Doctrine\DBAL\Schema\Schema
;
6 use Wallabag\CoreBundle\Doctrine\WallabagMigration
;
9 * Added list_mode in user config.
11 class Version20161128084725
extends WallabagMigration
14 * @param Schema $schema
16 public function up(Schema
$schema)
18 $configTable = $schema->getTable($this->getTable('config'));
19 $this->skipIf($configTable->hasColumn('list_mode'), 'It seems that you already played this migration.');
21 $configTable->addColumn('list_mode', 'integer', ['notnull' => false]);
25 * @param Schema $schema
27 public function down(Schema
$schema)
29 $configTable = $schema->getTable($this->getTable('config'));
30 $configTable->dropColumn('list_mode');