diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2020-04-28 09:02:39 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2020-04-29 14:19:31 +0200 |
commit | 9717d0129889ad73716be38766faede12adc333d (patch) | |
tree | d17a9b3ca340791dbd09a1124976ffa2422d31f3 /app/DoctrineMigrations | |
parent | 976b4bbb115e50feb71accc0e55f1129ac3557e5 (diff) | |
download | wallabag-9717d0129889ad73716be38766faede12adc333d.tar.gz wallabag-9717d0129889ad73716be38766faede12adc333d.tar.zst wallabag-9717d0129889ad73716be38766faede12adc333d.zip |
Upgrade Piwik Twig Extension to Matomo
Diffstat (limited to 'app/DoctrineMigrations')
-rw-r--r-- | app/DoctrineMigrations/Version20200428072628.php | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/app/DoctrineMigrations/Version20200428072628.php b/app/DoctrineMigrations/Version20200428072628.php new file mode 100644 index 00000000..57fbebc2 --- /dev/null +++ b/app/DoctrineMigrations/Version20200428072628.php | |||
@@ -0,0 +1,28 @@ | |||
1 | <?php | ||
2 | |||
3 | declare(strict_types=1); | ||
4 | |||
5 | namespace Application\Migrations; | ||
6 | |||
7 | use Doctrine\DBAL\Schema\Schema; | ||
8 | use Wallabag\CoreBundle\Doctrine\WallabagMigration; | ||
9 | |||
10 | /** | ||
11 | * Renamed Piwik to Matomo in configuration. | ||
12 | */ | ||
13 | final class Version20200428072628 extends WallabagMigration | ||
14 | { | ||
15 | public function up(Schema $schema): void | ||
16 | { | ||
17 | $this->addSql('UPDATE ' . $this->getTable('internal_setting', true) . " SET name = 'matomo_enabled' where name = 'piwik_enabled';"); | ||
18 | $this->addSql('UPDATE ' . $this->getTable('internal_setting', true) . " SET name = 'matomo_host' where name = 'piwik_host';"); | ||
19 | $this->addSql('UPDATE ' . $this->getTable('internal_setting', true) . " SET name = 'matomo_site_id' where name = 'piwik_site_id';"); | ||
20 | } | ||
21 | |||
22 | public function down(Schema $schema): void | ||
23 | { | ||
24 | $this->addSql('UPDATE ' . $this->getTable('internal_setting', true) . " SET name = 'piwik_enabled' where name = 'matomo_enabled';"); | ||
25 | $this->addSql('UPDATE ' . $this->getTable('internal_setting', true) . " SET name = 'piwik_host' where name = 'matomo_host';"); | ||
26 | $this->addSql('UPDATE ' . $this->getTable('internal_setting', true) . " SET name = 'piwik_site_id' where name = 'matomo_site_id';"); | ||
27 | } | ||
28 | } | ||