<?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 Version20240813123325 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 pos_installment ADD CONSTRAINT FK_62E70C82F6BD1646 FOREIGN KEY (site_id) REFERENCES sites (id)');
$this->addSql('CREATE INDEX IDX_62E70C82F6BD1646 ON pos_installment (site_id)');
$this->addSql('ALTER TABLE reservation_tour_extra ADD tour_extra_id INT DEFAULT NULL');
$this->addSql('ALTER TABLE reservation_tour_extra ADD CONSTRAINT FK_16DAD4F9B16AC6F5 FOREIGN KEY (tour_extra_id) REFERENCES tour_extra_service (id)');
$this->addSql('CREATE INDEX IDX_16DAD4F9B16AC6F5 ON reservation_tour_extra (tour_extra_id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE reservation_tour_extra DROP FOREIGN KEY FK_16DAD4F9B16AC6F5');
$this->addSql('DROP INDEX IDX_16DAD4F9B16AC6F5 ON reservation_tour_extra');
$this->addSql('ALTER TABLE reservation_tour_extra DROP tour_extra_id');
$this->addSql('ALTER TABLE pos_installment DROP FOREIGN KEY FK_62E70C82F6BD1646');
$this->addSql('DROP INDEX IDX_62E70C82F6BD1646 ON pos_installment');
}
}