<?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 Version20210424103316 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 ADD document_id INT DEFAULT NULL');
$this->addSql('ALTER TABLE cal_inventory ADD CONSTRAINT FK_4A4F57D7C33F7837 FOREIGN KEY (document_id) REFERENCES cal_booking_document (id)');
$this->addSql('CREATE UNIQUE INDEX UNIQ_4A4F57D7C33F7837 ON cal_inventory (document_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_4A4F57D7C33F7837');
$this->addSql('DROP INDEX UNIQ_4A4F57D7C33F7837 ON cal_inventory');
$this->addSql('ALTER TABLE cal_inventory DROP document_id');
}
}