<?phpdeclare(strict_types=1);namespace DoctrineMigrations;use Doctrine\DBAL\Schema\Schema;use Doctrine\Migrations\AbstractMigration;final class Version20260306090348 extends AbstractMigration{ public function getDescription(): string { return 'In Message table, make the statuses in lowercase.'; } public function up(Schema $schema): void { if ('dev' === $_SERVER['APP_ENV']) { $this->addSql('UPDATE message SET status=LOWER(status)'); } }}