]> git.immae.eu Git - github/wallabag/wallabag.git/blame - app/DoctrineMigrations/Version20161128084725.php
Fixed migrations with dash into db name
[github/wallabag/wallabag.git] / app / DoctrineMigrations / Version20161128084725.php
CommitLineData
9f01d0fd
NL
1<?php
2
3namespace Application\Migrations;
4
9f01d0fd 5use Doctrine\DBAL\Schema\Schema;
bfe7a692 6use Wallabag\CoreBundle\Doctrine\WallabagMigration;
9f01d0fd
NL
7
8/**
9aa99128 9 * Added list_mode in user config.
9f01d0fd 10 */
bfe7a692 11class Version20161128084725 extends WallabagMigration
9f01d0fd 12{
9f01d0fd
NL
13 /**
14 * @param Schema $schema
15 */
16 public function up(Schema $schema)
17 {
18 $configTable = $schema->getTable($this->getTable('config'));
9aa99128 19 $this->skipIf($configTable->hasColumn('list_mode'), 'It seems that you already played this migration.');
9f01d0fd 20
24879db1 21 $configTable->addColumn('list_mode', 'integer', ['notnull' => false]);
9f01d0fd
NL
22 }
23
24 /**
25 * @param Schema $schema
26 */
27 public function down(Schema $schema)
28 {
29 $configTable = $schema->getTable($this->getTable('config'));
9aa99128 30 $configTable->dropColumn('list_mode');
9f01d0fd
NL
31 }
32}