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