<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20250721164434 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE abstract_payment ADD recipient_email VARCHAR(255) DEFAULT NULL, ADD hosted_payment_url LONGTEXT DEFAULT NULL, ADD expires_at DATETIME DEFAULT NULL, ADD status VARCHAR(50) DEFAULT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE abstract_payment DROP recipient_email, DROP hosted_payment_url, DROP expires_at, DROP status');
}
}