]> git.immae.eu Git - github/wallabag/wallabag.git/blame - app/DoctrineMigrations/Version20170327194233.php
Fixed migrations with dash into db name
[github/wallabag/wallabag.git] / app / DoctrineMigrations / Version20170327194233.php
CommitLineData
b5a5377a
NL
1<?php
2
3namespace Application\Migrations;
4
b5a5377a 5use Doctrine\DBAL\Schema\Schema;
bfe7a692 6use Wallabag\CoreBundle\Doctrine\WallabagMigration;
b5a5377a
NL
7
8/**
9 * Add the share_scuttle internal setting.
10 */
bfe7a692 11class Version20170327194233 extends WallabagMigration
b5a5377a 12{
b5a5377a
NL
13 /**
14 * @param Schema $schema
15 */
16 public function up(Schema $schema)
17 {
18 $scuttle = $this->container
19 ->get('doctrine.orm.default_entity_manager')
20 ->getConnection()
f808b016 21 ->fetchArray('SELECT * FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'share_scuttle'");
b5a5377a
NL
22
23 $this->skipIf(false !== $scuttle, 'It seems that you already played this migration.');
24
f808b016
JB
25 $this->addSql('INSERT INTO ' . $this->getTable('craue_config_setting') . " (name, value, section) VALUES ('share_scuttle', '1', 'entry')");
26 $this->addSql('INSERT INTO ' . $this->getTable('craue_config_setting') . " (name, value, section) VALUES ('scuttle_url', 'http://scuttle.org', 'entry')");
b5a5377a
NL
27 }
28
29 /**
30 * @param Schema $schema
31 */
32 public function down(Schema $schema)
33 {
f808b016
JB
34 $this->addSql('DELETE FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'share_scuttle';");
35 $this->addSql('DELETE FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'scuttle_url';");
36 }
b5a5377a 37}