vendor/eckinox/security-bundle/migrations/Version20220808092422.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace EckinoxSecurityMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. final class Version20220808092422 extends AbstractMigration
  7. {
  8.     public function getDescription(): string
  9.     {
  10.         return 'Migrate privileges in a JSON object format to an array format.';
  11.     }
  12.     public function up(Schema $schema): void
  13.     {
  14.         $this->addSql('UPDATE `eckinox_users` SET `privileges` = `privileges`->"$.*" WHERE `privileges` IS NOT NULL AND `privileges`->"$.*" IS NOT NULL');
  15.         $this->addSql('UPDATE `eckinox_app_users` SET `privileges` = `privileges`->"$.*" WHERE `privileges` IS NOT NULL AND `privileges`->"$.*" IS NOT NULL');
  16.         $this->addSql('UPDATE `eckinox_user_groups` SET `privileges` = `privileges`->"$.*" WHERE `privileges` IS NOT NULL AND `privileges`->"$.*" IS NOT NULL');
  17.         $this->addSql('UPDATE `eckinox_app_user_groups` SET `privileges` = `privileges`->"$.*" WHERE `privileges` IS NOT NULL AND `privileges`->"$.*" IS NOT NULL');
  18.     }
  19.     public function down(Schema $schema): void
  20.     {
  21.     }
  22. }