migrations/Version20201217141337.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Application\Migrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. /**
  7.  * Auto-generated Migration: Please modify to your needs!
  8.  */
  9. final class Version20201217141337 extends AbstractMigration
  10. {
  11.     public function up(Schema $schema): void
  12.     {
  13.         // this up() migration is auto-generated, please modify it to your needs
  14.         $this->abortIf('mysql' !== $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'mysql\'.');
  15.         $this->addSql('CREATE TABLE non_petroleum_substance_ec (id INT AUTO_INCREMENT NOT NULL, ec VARCHAR(255) NOT NULL, created_at DATETIME NOT NULL COMMENT \'(DC2Type:carbondatetime)\', updated_at DATETIME NOT NULL COMMENT \'(DC2Type:carbondatetime)\', UNIQUE INDEX UNIQ_3DE388928DE8BDFF (ec), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci ENGINE = InnoDB');
  16.         $this->addSql('ALTER TABLE legal_entity_cart_line ADD non_petroleum_ec_id INT DEFAULT NULL');
  17.         $this->addSql('ALTER TABLE legal_entity_cart_line ADD CONSTRAINT FK_40AD22B2F06AED40 FOREIGN KEY (non_petroleum_ec_id) REFERENCES non_petroleum_substance_ec (id)');
  18.         $this->addSql('CREATE INDEX IDX_40AD22B2F06AED40 ON legal_entity_cart_line (non_petroleum_ec_id)');
  19.         $this->addSql('ALTER TABLE legal_entity_active_definition ADD non_petroleum_ec_id INT DEFAULT NULL');
  20.         $this->addSql('ALTER TABLE legal_entity_active_definition ADD CONSTRAINT FK_CF711C4BF06AED40 FOREIGN KEY (non_petroleum_ec_id) REFERENCES non_petroleum_substance_ec (id)');
  21.         $this->addSql('CREATE INDEX IDX_CF711C4BF06AED40 ON legal_entity_active_definition (non_petroleum_ec_id)');
  22.     }
  23.     public function down(Schema $schema): void
  24.     {
  25.         // this down() migration is auto-generated, please modify it to your needs
  26.         $this->abortIf('mysql' !== $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'mysql\'.');
  27.         $this->addSql('ALTER TABLE legal_entity_cart_line DROP FOREIGN KEY FK_40AD22B2F06AED40');
  28.         $this->addSql('ALTER TABLE legal_entity_active_definition DROP FOREIGN KEY FK_CF711C4BF06AED40');
  29.         $this->addSql('DROP TABLE non_petroleum_substance_ec');
  30.         $this->addSql('DROP INDEX IDX_CF711C4BF06AED40 ON legal_entity_active_definition');
  31.         $this->addSql('ALTER TABLE legal_entity_active_definition DROP non_petroleum_ec_id');
  32.         $this->addSql('DROP INDEX IDX_40AD22B2F06AED40 ON legal_entity_cart_line');
  33.         $this->addSql('ALTER TABLE legal_entity_cart_line DROP non_petroleum_ec_id');
  34.     }
  35. }