migrations/Version20200319124812.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 Version20200319124812 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 non_member_order_invoice ADD billing_company_id INT DEFAULT NULL, ADD billing_contact_id INT DEFAULT NULL');
  16.         $this->addSql('ALTER TABLE non_member_order_invoice ADD CONSTRAINT FK_987BEE981BFC7547 FOREIGN KEY (billing_company_id) REFERENCES non_member_billing_company (id)');
  17.         $this->addSql('ALTER TABLE non_member_order_invoice ADD CONSTRAINT FK_987BEE986BC64ADB FOREIGN KEY (billing_contact_id) REFERENCES non_member_billing_contact_person (id)');
  18.         $this->addSql('CREATE INDEX IDX_987BEE981BFC7547 ON non_member_order_invoice (billing_company_id)');
  19.         $this->addSql('CREATE INDEX IDX_987BEE986BC64ADB ON non_member_order_invoice (billing_contact_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 non_member_order_invoice DROP FOREIGN KEY FK_987BEE981BFC7547');
  26.         $this->addSql('ALTER TABLE non_member_order_invoice DROP FOREIGN KEY FK_987BEE986BC64ADB');
  27.         $this->addSql('DROP INDEX IDX_987BEE981BFC7547 ON non_member_order_invoice');
  28.         $this->addSql('DROP INDEX IDX_987BEE986BC64ADB ON non_member_order_invoice');
  29.         $this->addSql('ALTER TABLE non_member_order_invoice DROP billing_company_id, DROP billing_contact_id');
  30.     }
  31. }