<?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 Version20210422092754 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_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 event_id INT DEFAULT NULL');
$this->addSql('ALTER TABLE cal_inventory ADD CONSTRAINT FK_4A4F57D771F7E88B FOREIGN KEY (event_id) REFERENCES cal_calendar_event (id)');
$this->addSql('CREATE UNIQUE INDEX UNIQ_4A4F57D771F7E88B ON cal_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_inventory DROP FOREIGN KEY FK_4A4F57D771F7E88B');
$this->addSql('DROP INDEX UNIQ_4A4F57D771F7E88B ON cal_inventory');
$this->addSql('ALTER TABLE cal_inventory CHANGE event_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)');
}
}