]> git.immae.eu Git - github/wallabag/wallabag.git/blame - app/DoctrineMigrations/Version20161106113822.php
Merge pull request #4438 from wallabag/dependabot/composer/scheb/two-factor-bundle...
[github/wallabag/wallabag.git] / app / DoctrineMigrations / Version20161106113822.php
CommitLineData
a42f38d9
NL
1<?php
2
3namespace Application\Migrations;
4
a42f38d9 5use Doctrine\DBAL\Schema\Schema;
bfe7a692 6use Wallabag\CoreBundle\Doctrine\WallabagMigration;
a42f38d9 7
b87f1712 8/**
01736b5a 9 * Added action_mark_as_read field on config table.
b87f1712 10 */
bfe7a692 11class Version20161106113822 extends WallabagMigration
a42f38d9 12{
a42f38d9
NL
13 public function up(Schema $schema)
14 {
84c6a48d 15 $configTable = $schema->getTable($this->getTable('config'));
18d7bc3a 16
84c6a48d
NL
17 $this->skipIf($configTable->hasColumn('action_mark_as_read'), 'It seems that you already played this migration.');
18
19 $configTable->addColumn('action_mark_as_read', 'integer', [
20 'default' => 0,
3ef75cc4 21 'notnull' => false,
84c6a48d 22 ]);
a42f38d9
NL
23 }
24
a42f38d9
NL
25 public function down(Schema $schema)
26 {
84c6a48d 27 $configTable = $schema->getTable($this->getTable('config'));
4acbeb93
NL
28
29 $this->skipIf(!$configTable->hasColumn('action_mark_as_read'), 'It seems that you already played this migration.');
30
31 $configTable->dropColumn('action_mark_as_read');
a42f38d9
NL
32 }
33}