]>
Commit | Line | Data |
---|---|---|
d64bf795 NL |
1 | <?php |
2 | ||
3 | namespace Application\Migrations; | |
4 | ||
d64bf795 | 5 | use Doctrine\DBAL\Schema\Schema; |
bfe7a692 | 6 | use Wallabag\CoreBundle\Doctrine\WallabagMigration; |
d64bf795 NL |
7 | |
8 | /** | |
a4d55a91 | 9 | * Add the restricted_access internal setting for articles with paywall. |
d64bf795 | 10 | */ |
bfe7a692 | 11 | class Version20161122144743 extends WallabagMigration |
d64bf795 | 12 | { |
d64bf795 NL |
13 | /** |
14 | * @param Schema $schema | |
15 | */ | |
16 | public function up(Schema $schema) | |
17 | { | |
31fec5f3 JB |
18 | $access = $this->container |
19 | ->get('doctrine.orm.default_entity_manager') | |
20 | ->getConnection() | |
f808b016 | 21 | ->fetchArray('SELECT * FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'restricted_access'"); |
31fec5f3 JB |
22 | |
23 | $this->skipIf(false !== $access, 'It seems that you already played this migration.'); | |
24 | ||
f808b016 | 25 | $this->addSql('INSERT INTO ' . $this->getTable('craue_config_setting') . " (name, value, section) VALUES ('restricted_access', 0, 'entry')"); |
d64bf795 NL |
26 | } |
27 | ||
28 | /** | |
29 | * @param Schema $schema | |
30 | */ | |
31 | public function down(Schema $schema) | |
32 | { | |
f808b016 JB |
33 | $this->addSql('DELETE FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'restricted_access';"); |
34 | } | |
d64bf795 | 35 | } |