migrations/Version20200615125609.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 Version20200615125609 extends AbstractMigration
  10. {
  11.     public function up(Schema $schema): void
  12.     {
  13.         $this->addSql('ALTER TABLE `substance_definition` DROP COLUMN `type`');
  14.         $this->addSql('ALTER TABLE member_order_line DROP FOREIGN KEY FK_77AB9008611C0C56');
  15.         $this->addSql('ALTER TABLE member_order_line DROP FOREIGN KEY FK_77AB90086DEC420C');
  16.         $this->addSql('ALTER TABLE member_order_line DROP FOREIGN KEY FK_77AB9008C707E018');
  17.     }
  18.     public function down(Schema $schema): void
  19.     {
  20.         $this->addSql('ALTER TABLE `substance_definition` ADD COLUMN `type` VARCHAR(255) ');
  21.         $this->addSql('ALTER TABLE member_order_line ADD CONSTRAINT FK_77AB9008611C0C56 FOREIGN KEY (dossier_id) REFERENCES member_order_line (id)');
  22.         $this->addSql('ALTER TABLE member_order_line ADD CONSTRAINT FK_77AB90086DEC420C FOREIGN KEY (legal_entity_id) REFERENCES member_order_line (id)');
  23.         $this->addSql('ALTER TABLE member_order_line ADD CONSTRAINT FK_77AB9008C707E018 FOREIGN KEY (substance_id) REFERENCES member_order_line (id)');
  24.     }
  25. }