]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/DoctrineMigrations/Version20161117071626.php
Update deps
[github/wallabag/wallabag.git] / app / DoctrineMigrations / Version20161117071626.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 the internal setting to share articles to unmark.it.
10 */
11 class Version20161117071626 extends WallabagMigration
12 {
13 public function up(Schema $schema)
14 {
15 $share = $this->container
16 ->get('doctrine.orm.default_entity_manager')
17 ->getConnection()
18 ->fetchArray('SELECT * FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'share_unmark'");
19
20 if (false === $share) {
21 $this->addSql('INSERT INTO ' . $this->getTable('craue_config_setting') . " (name, value, section) VALUES ('share_unmark', 0, 'entry')");
22 }
23
24 $unmark = $this->container
25 ->get('doctrine.orm.default_entity_manager')
26 ->getConnection()
27 ->fetchArray('SELECT * FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'unmark_url'");
28
29 if (false === $unmark) {
30 $this->addSql('INSERT INTO ' . $this->getTable('craue_config_setting') . " (name, value, section) VALUES ('unmark_url', 'https://unmark.it', 'entry')");
31 }
32
33 $this->skipIf(false !== $share && false !== $unmark, 'It seems that you already played this migration.');
34 }
35
36 public function down(Schema $schema)
37 {
38 $this->addSql('DELETE FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'share_unmark';");
39 $this->addSql('DELETE FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'unmark_url';");
40 }
41 }