]> git.immae.eu Git - github/wallabag/wallabag.git/blame - app/DoctrineMigrations/Version20160916201049.php
Merge pull request #4438 from wallabag/dependabot/composer/scheb/two-factor-bundle...
[github/wallabag/wallabag.git] / app / DoctrineMigrations / Version20160916201049.php
CommitLineData
ebe0787e
JB
1<?php
2
3namespace Application\Migrations;
4
ebe0787e 5use Doctrine\DBAL\Schema\Schema;
bfe7a692 6use Wallabag\CoreBundle\Doctrine\WallabagMigration;
ebe0787e 7
b87f1712 8/**
01736b5a 9 * Added pocket_consumer_key field on wallabag_config.
b87f1712 10 */
bfe7a692 11class Version20160916201049 extends WallabagMigration
ebe0787e 12{
ebe0787e
JB
13 public function up(Schema $schema)
14 {
597755b8 15 $configTable = $schema->getTable($this->getTable('config'));
18d7bc3a 16
597755b8
NL
17 $this->skipIf($configTable->hasColumn('pocket_consumer_key'), 'It seems that you already played this migration.');
18
3ad4061d 19 $configTable->addColumn('pocket_consumer_key', 'string', ['notnull' => false]);
f808b016 20 $this->addSql('DELETE FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'pocket_consumer_key';");
ebe0787e
JB
21 }
22
ebe0787e
JB
23 public function down(Schema $schema)
24 {
597755b8 25 $configTable = $schema->getTable($this->getTable('config'));
d79b3adb 26 $configTable->dropColumn('pocket_consumer_key');
f808b016
JB
27 $this->addSql('INSERT INTO ' . $this->getTable('craue_config_setting') . " (name, value, section) VALUES ('pocket_consumer_key', NULL, 'import')");
28 }
ebe0787e 29}