<?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 Version20200226171750 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->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.');
$this->addSql('ALTER TABLE ebooking ADD booking_order_id INT DEFAULT NULL');
$this->addSql('ALTER TABLE ebooking ADD CONSTRAINT FK_80494316B6ABF3B5 FOREIGN KEY (booking_order_id) REFERENCES orders (id)');
$this->addSql('CREATE UNIQUE INDEX UNIQ_80494316B6ABF3B5 ON ebooking (booking_order_id)');
}
public function down(Schema $schema) : void
{
// this down() migration is auto-generated, please modify it to your needs
$this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.');
$this->addSql('ALTER TABLE ebooking DROP FOREIGN KEY FK_80494316B6ABF3B5');
$this->addSql('DROP INDEX UNIQ_80494316B6ABF3B5 ON ebooking');
$this->addSql('ALTER TABLE ebooking DROP booking_order_id');
}
}