<?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 Version20221222075200 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 airport ADD city_id INT DEFAULT NULL');
$this->addSql('ALTER TABLE airport ADD CONSTRAINT FK_7E91F7C28BAC62AF FOREIGN KEY (city_id) REFERENCES city (id)');
$this->addSql('CREATE INDEX IDX_7E91F7C28BAC62AF ON airport (city_id)');
$this->addSql('ALTER TABLE city DROP FOREIGN KEY FK_2D5B0234289F53C8');
$this->addSql('DROP INDEX IDX_2D5B0234289F53C8 ON city');
$this->addSql('ALTER TABLE city DROP airport_id');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE airport DROP FOREIGN KEY FK_7E91F7C28BAC62AF');
$this->addSql('DROP INDEX IDX_7E91F7C28BAC62AF ON airport');
$this->addSql('ALTER TABLE airport DROP city_id');
$this->addSql('ALTER TABLE city ADD airport_id INT DEFAULT NULL');
$this->addSql('ALTER TABLE city ADD CONSTRAINT FK_2D5B0234289F53C8 FOREIGN KEY (airport_id) REFERENCES airport (id)');
$this->addSql('CREATE INDEX IDX_2D5B0234289F53C8 ON city (airport_id)');
}
}