<?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 Version20190717211631 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 action ADD e_booking_id INT DEFAULT NULL, ADD attachment LONGTEXT NOT NULL, CHANGE booking_id booking_id INT DEFAULT NULL');
$this->addSql('ALTER TABLE action ADD CONSTRAINT FK_47CC8C92C0D88083 FOREIGN KEY (e_booking_id) REFERENCES booking (id)');
$this->addSql('CREATE INDEX IDX_47CC8C92C0D88083 ON action (e_booking_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 action DROP FOREIGN KEY FK_47CC8C92C0D88083');
$this->addSql('DROP INDEX IDX_47CC8C92C0D88083 ON action');
$this->addSql('ALTER TABLE action DROP e_booking_id, DROP attachment, CHANGE booking_id booking_id INT NOT NULL');
}
}