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