<?phpdeclare(strict_types=1);namespace DoctrineMigrations;use Doctrine\DBAL\Schema\Schema;use Doctrine\Migrations\AbstractMigration;final class Version20250107134123 extends AbstractMigration{ public function getDescription(): string { return 'Update type for product with id 3167'; } public function up(Schema $schema): void { if ('staging' === $_SERVER['APP_SERVER']) { $this->addSql('UPDATE product SET type = "product" WHERE product.id = 3167'); } }}