<?phpdeclare(strict_types=1);namespace DoctrineMigrations;use Doctrine\DBAL\Schema\Schema;use Doctrine\Migrations\AbstractMigration;final class Version20250228125900 extends AbstractMigration{ public function getDescription(): string { return ''; } public function up(Schema $schema): void { $this->addSql('ALTER TABLE application ADD legal_interest TEXT DEFAULT NULL'); } public function down(Schema $schema): void { $this->addSql('ALTER TABLE application DROP legal_interest'); }}