Skip to content

Commit

Permalink
Remove Matomo Integration - Add migration to remove user permissions …
Browse files Browse the repository at this point in the history
…"piwik_settings" & "piwik_reports" #8144
  • Loading branch information
dvesh3 committed Feb 18, 2021
1 parent b16d317 commit 7b42940
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions bundles/CoreBundle/Migrations/Version20210218142556.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php

declare(strict_types=1);

namespace Pimcore\Bundle\CoreBundle\Migrations;

use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;

final class Version20210218142556 extends AbstractMigration
{
/**
* @param Schema $schema
*/
public function up(Schema $schema): void
{
$this->addSql("DELETE FROM users_permission_definitions WHERE `key` = 'piwik_settings'");
$this->addSql("DELETE FROM users_permission_definitions WHERE `key` = 'piwik_reports'");
}

/**
* @param Schema $schema
*/
public function down(Schema $schema): void
{
$this->addSql("INSERT IGNORE INTO users_permission_definitions (`key`) VALUES('piwik_settings');");
$this->addSql("INSERT IGNORE INTO users_permission_definitions (`key`) VALUES('piwik_reports');");
}
}

0 comments on commit 7b42940

Please sign in to comment.