<?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 Version20250830200109 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql('CREATE SEQUENCE tourapp.configuration_id_seq INCREMENT BY 1 MINVALUE 1 START 1');
$this->addSql('CREATE TABLE tourapp.configuration (id INT NOT NULL, name VARCHAR(255) NOT NULL, value text DEFAULT NULL, PRIMARY KEY(id))');
$this->addSql('ALTER TABLE tourapp.travel ADD opt_payment_bank BOOLEAN DEFAULT true;');
$this->addSql('ALTER TABLE tourapp.app_settings ADD app_statute varchar NULL;');
}
public function down(Schema $schema): void
{ }
}