<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20241009220350 extends AbstractMigration
{
public function getDescription(): string
{
return 'add with_payment_process for sponsor';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE sponsor ADD with_payment_process TINYINT(1) DEFAULT 0 NOT NULL;');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE sponsor DROP with_payment_process;');
}
}