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