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