migrations/2024/05/Version20240528042854.php line 1
<?phpdeclare(strict_types=1);namespace DoctrineMigrations;use Doctrine\DBAL\Schema\Schema;use Doctrine\Migrations\AbstractMigration;final class Version20240528042854 extends AbstractMigration{public function up(Schema $schema): void{$this->addSql('ALTER TABLE contact ADD old_name VARCHAR(255) DEFAULT NULL COLLATE `utf8mb4_unicode_520_ci`');}public function down(Schema $schema): void{$this->addSql('ALTER TABLE contact DROP old_name');}}