Covivo/mobicoop

View on GitHub
api/src/Migrations/Version20190709085351.php

Summary

Maintainability
A
3 hrs
Test Coverage
<?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 Version20190709085351 extends AbstractMigration
{
    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 notified DROP FOREIGN KEY FK_D23269D4E252B6A5');
        $this->addSql('DROP INDEX IDX_D23269D4E252B6A5 ON notified');
        $this->addSql('ALTER TABLE notified DROP medium_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 notified ADD medium_id INT NOT NULL');
        $this->addSql('ALTER TABLE notified ADD CONSTRAINT FK_D23269D4E252B6A5 FOREIGN KEY (medium_id) REFERENCES medium (id)');
        $this->addSql('CREATE INDEX IDX_D23269D4E252B6A5 ON notified (medium_id)');
    }
}