<?phpdeclare(strict_types=1);namespace DoctrineMigrations;use Doctrine\DBAL\Schema\Schema;use Doctrine\Migrations\AbstractMigration;final class Version20250407074945 extends AbstractMigration{ public function getDescription(): string { return 'add fees attribute in order entity'; } public function up(Schema $schema): void { $this->addSql('ALTER TABLE `order` ADD fees INT DEFAULT 0 NOT NULL'); } public function down(Schema $schema): void { $this->addSql('ALTER TABLE `order` DROP fees'); }}