Skip to content

Commit

Permalink
fix: add migration script for permission definition
Browse files Browse the repository at this point in the history
  • Loading branch information
mike4git committed Oct 1, 2024
1 parent f4ef674 commit 81bd775
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions src/Migrations/Version20241001090000.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<?php
declare(strict_types=1);

/**
* Pimcore
*
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Pimcore Commercial License (PCL)
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
* @license http://www.pimcore.org/license GPLv3 and PCL
*/

namespace Neusta\Pimcore\AreabrickConfigBundle\Migrations;

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

final class Version20241001090000 extends AbstractMigration
{
const PERMISSION_KEY_AREABRICKS = "'pimcore.areabrick.config.areabricks.overview'";

public function up(Schema $schema): void
{
$this->addSql("INSERT IGNORE INTO users_permission_definitions (`key`) VALUES(" . self::PERMISSION_KEY_AREABRICKS . ");");
}

public function down(Schema $schema): void
{
$this->addSql("DELETE FROM users_permission_definitions WHERE `key` = " . self::PERMISSION_KEY_AREABRICKS . ";");
}
}

0 comments on commit 81bd775

Please sign in to comment.