migrations/Version20210104123403.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 Version20210104123403 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('ALTER TABLE legal_entity_cart_line ADD add_new_ec TINYINT(1) DEFAULT NULL');
  16.         $this->addSql('ALTER TABLE legal_entity_active_definition ADD add_new_ec TINYINT(1) DEFAULT NULL');
  17.         $this->addSql('ALTER TABLE substance_definition ADD non_petroleum_ec_id INT DEFAULT NULL');
  18.         $this->addSql('ALTER TABLE substance_definition ADD CONSTRAINT FK_282BEF2FF06AED40 FOREIGN KEY (non_petroleum_ec_id) REFERENCES non_petroleum_substance_ec (id)');
  19.         $this->addSql('CREATE INDEX IDX_282BEF2FF06AED40 ON substance_definition (non_petroleum_ec_id)');
  20.     }
  21.     public function down(Schema $schema): void
  22.     {
  23.         // this down() migration is auto-generated, please modify it to your needs
  24.         $this->abortIf('mysql' !== $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'mysql\'.');
  25.         $this->addSql('ALTER TABLE legal_entity_active_definition DROP add_new_ec');
  26.         $this->addSql('ALTER TABLE legal_entity_cart_line DROP add_new_ec');
  27.         $this->addSql('ALTER TABLE substance_definition DROP FOREIGN KEY FK_282BEF2FF06AED40');
  28.         $this->addSql('DROP INDEX IDX_282BEF2FF06AED40 ON substance_definition');
  29.         $this->addSql('ALTER TABLE substance_definition DROP non_petroleum_ec_id');
  30.     }
  31. }