<?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 Version20240607135224 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 hotel_minute_deals ADD tour_category_id INT DEFAULT NULL');
$this->addSql('ALTER TABLE hotel_minute_deals ADD CONSTRAINT FK_1DF377F27210CF21 FOREIGN KEY (tour_category_id) REFERENCES tour_category (id)');
$this->addSql('CREATE INDEX IDX_1DF377F27210CF21 ON hotel_minute_deals (tour_category_id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE hotel_minute_deals DROP FOREIGN KEY FK_1DF377F27210CF21');
$this->addSql('DROP INDEX IDX_1DF377F27210CF21 ON hotel_minute_deals');
$this->addSql('ALTER TABLE hotel_minute_deals DROP tour_category_id');
}
}