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