migrations/2022/12/Version20221208122523.php line 1
<?phpdeclare(strict_types=1);namespace DoctrineMigrations;use Doctrine\DBAL\Schema\Schema;use Doctrine\Migrations\AbstractMigration;final class Version20221208122523 extends AbstractMigration{public function up(Schema $schema): void{}public function down(Schema $schema): void{}public function postUp(Schema $schema): void{$this->connection->executeQuery('UPDATE contact_access SET role=20 WHERE role=10');$this->connection->executeQuery('UPDATE contact_access SET role=40 WHERE role=30');}}