<?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 Version20250804093721 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 merchants ALTER payment_provider TYPE VARCHAR(255)');
$this->addSql('ALTER TABLE merchants ALTER payment_provider SET NOT NULL');
$this->addSql('ALTER TABLE payments DROP payment_received');
$this->addSql('ALTER TABLE payments DROP receiving_response');
$this->addSql('ALTER TABLE payments ALTER pending_url SET NOT NULL');
$this->addSql('ALTER TABLE payments ALTER mapping_id SET NOT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('CREATE SCHEMA public');
$this->addSql('ALTER TABLE payments ADD payment_received BOOLEAN DEFAULT false');
$this->addSql('ALTER TABLE payments ADD receiving_response JSONB DEFAULT NULL');
$this->addSql('ALTER TABLE payments ALTER pending_url DROP NOT NULL');
$this->addSql('ALTER TABLE payments ALTER mapping_id DROP NOT NULL');
$this->addSql('ALTER TABLE merchants ALTER payment_provider TYPE TEXT');
$this->addSql('ALTER TABLE merchants ALTER payment_provider DROP NOT NULL');
}
}