Skip to content

Commit

Permalink
fix: Restrict Process execution to Permission #166
Browse files Browse the repository at this point in the history
  • Loading branch information
ctippler committed Feb 17, 2023
1 parent 7ca4ebc commit ac27572
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions src/Migrations/Version20230217000000.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?php

namespace Elements\Bundle\ProcessManagerBundle\Migrations;

use Elements\Bundle\ProcessManagerBundle\ElementsProcessManagerBundle;
use Doctrine\DBAL\Schema\Schema;
use Pimcore\Migrations\BundleAwareMigration;

class Version20230217000000 extends BundleAwareMigration
{
protected function getBundleName(): string
{
return ElementsProcessManagerBundle::BUNDLE_NAME;
}

/**
* @param Schema $schema
*/
public function up(Schema $schema): void
{

$this->addSql(
'UPDATE bundle_process_manager_configuration SET `restrictToPermissions` = "" WHERE `restrictToPermissions` IS null'
);
$this->addSql(
'ALTER TABLE `bundle_process_manager_configuration` MODIFY `restrictToPermissions` MEDIUMTEXT NOT NULL DEFAULT ""'
);
}

/**
* @param Schema $schema
*/
public function down(Schema $schema): void
{
}
}

0 comments on commit ac27572

Please sign in to comment.