<?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 Version20210422091641 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 ADD inventory_id INT DEFAULT NULL');
$this->addSql('ALTER TABLE cal_booking ADD CONSTRAINT FK_D7A58FE19EEA759 FOREIGN KEY (inventory_id) REFERENCES cal_inventory (id)');
$this->addSql('CREATE UNIQUE INDEX UNIQ_D7A58FE19EEA759 ON cal_booking (inventory_id)');
$this->addSql('ALTER TABLE cal_inventory DROP FOREIGN KEY FK_4A4F57D7EA935B3');
$this->addSql('DROP INDEX IDX_4A4F57D7EA935B3 ON cal_inventory');
$this->addSql('ALTER TABLE cal_inventory CHANGE booking_room_id calendar_event_id INT DEFAULT NULL');
$this->addSql('ALTER TABLE cal_inventory ADD CONSTRAINT FK_4A4F57D77495C8E3 FOREIGN KEY (calendar_event_id) REFERENCES cal_calendar_event (id)');
$this->addSql('CREATE UNIQUE INDEX UNIQ_4A4F57D77495C8E3 ON cal_inventory (calendar_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 DROP FOREIGN KEY FK_D7A58FE19EEA759');
$this->addSql('DROP INDEX UNIQ_D7A58FE19EEA759 ON cal_booking');
$this->addSql('ALTER TABLE cal_booking DROP inventory_id');
$this->addSql('ALTER TABLE cal_inventory DROP FOREIGN KEY FK_4A4F57D77495C8E3');
$this->addSql('DROP INDEX UNIQ_4A4F57D77495C8E3 ON cal_inventory');
$this->addSql('ALTER TABLE cal_inventory CHANGE calendar_event_id booking_room_id INT DEFAULT NULL');
$this->addSql('ALTER TABLE cal_inventory ADD CONSTRAINT FK_4A4F57D7EA935B3 FOREIGN KEY (booking_room_id) REFERENCES cal_booking_room (id)');
$this->addSql('CREATE INDEX IDX_4A4F57D7EA935B3 ON cal_inventory (booking_room_id)');
}
}