]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/DoctrineMigrations/Version20161106113822.php
Update deps
[github/wallabag/wallabag.git] / app / DoctrineMigrations / Version20161106113822.php
1 <?php
2
3 namespace Application\Migrations;
4
5 use Doctrine\DBAL\Schema\Schema;
6 use Wallabag\CoreBundle\Doctrine\WallabagMigration;
7
8 /**
9 * Added action_mark_as_read field on config table.
10 */
11 class Version20161106113822 extends WallabagMigration
12 {
13 public function up(Schema $schema)
14 {
15 $configTable = $schema->getTable($this->getTable('config'));
16
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,
21 'notnull' => false,
22 ]);
23 }
24
25 public function down(Schema $schema)
26 {
27 $configTable = $schema->getTable($this->getTable('config'));
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');
32 }
33 }