migrations/2022/11/Version20221116220459.php line 1
<?phpdeclare(strict_types=1);namespace DoctrineMigrations;use Doctrine\DBAL\Schema\Schema;use Doctrine\Migrations\AbstractMigration;final class Version20221116220459 extends AbstractMigration{public function up(Schema $schema): void{$this->addSql('ALTER TABLE contact_access CHANGE role role SMALLINT NOT NULL COMMENT \'(DC2Type:contact_access_role)\'');}public function down(Schema $schema): void{$this->addSql('ALTER TABLE contact_access CHANGE role role SMALLINT NOT NULL');}}