<?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 Version20251007202613 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE tourapp.travel ADD travel_days_terminate_pay_deadline_final INT DEFAULT 0 NOT NULL');
$this->addSql('ALTER TABLE tourapp.travel ADD travel_days_terminate_pay_deadline_final_status BOOLEAN DEFAULT false NOT NULL');
$this->addSql('ALTER TABLE tourapp.travel ADD full_payment_on_signup_status BOOLEAN DEFAULT false NOT NULL');
$this->addSql('ALTER TABLE tourapp.travel ADD opt_surcharge_bank_only BOOLEAN DEFAULT false NOT NULL');
$this->addSql('ALTER TABLE tourapp.travel ADD opt_exclude_terms_conditions BOOLEAN DEFAULT false NOT NULL');
}
public function down(Schema $schema): void
{
}
}