<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20210924151637 extends AbstractMigration
{
public function getDescription(): string
{
return 'Add ROLE_ANDRE_ORTH';
}
public function up(Schema $schema): void
{
$this->addSql('INSERT INTO role (label, title, active) VALUES ("ROLE_ANDRE_ORTH", "Accès Bulletin andre orth", 1)');
}
public function down(Schema $schema): void
{
}
}