]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/DoctrineMigrations/Version20160916201049.php
Fixed migrations with dash into db name
[github/wallabag/wallabag.git] / app / DoctrineMigrations / Version20160916201049.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 pocket_consumer_key field on wallabag_config.
10 */
11 class Version20160916201049 extends WallabagMigration
12 {
13 /**
14 * @param Schema $schema
15 */
16 public function up(Schema $schema)
17 {
18 $configTable = $schema->getTable($this->getTable('config'));
19
20 $this->skipIf($configTable->hasColumn('pocket_consumer_key'), 'It seems that you already played this migration.');
21
22 $configTable->addColumn('pocket_consumer_key', 'string', ['notnull' => false]);
23 $this->addSql('DELETE FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'pocket_consumer_key';");
24 }
25
26 /**
27 * @param Schema $schema
28 */
29 public function down(Schema $schema)
30 {
31 $configTable = $schema->getTable($this->getTable('config'));
32 $configTable->dropColumn('pocket_consumer_key');
33 $this->addSql('INSERT INTO ' . $this->getTable('craue_config_setting') . " (name, value, section) VALUES ('pocket_consumer_key', NULL, 'import')");
34 }
35 }