<?phpdeclare(strict_types=1);namespace DoctrineMigrations;use Doctrine\DBAL\Schema\Schema;use Doctrine\Migrations\AbstractMigration;final class Version20220203230222 extends AbstractMigration{ public function up(Schema $schema): void { $this->addSql('ALTER TABLE payment DROP notes'); } public function down(Schema $schema): void { $this->addSql('ALTER TABLE payment ADD notes LONGTEXT CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`'); }}