vendor/bluue/sales-bundle/migrations/Version20240709082440.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace SalesBundleMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. use Symfony\Component\Uid\UuidV6;
  7. /**
  8.  * Auto-generated Migration: Please modify to your needs!
  9.  */
  10. final class Version20240709082440 extends AbstractMigration
  11. {
  12.     public function getDescription(): string
  13.     {
  14.         return '';
  15.     }
  16.     public function up(Schema $schema): void
  17.     {
  18.         // this up() migration is auto-generated, please modify it to your needs
  19.         $this->addSql('ALTER TABLE sales_bundle__credit_note_line ADD product_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', ADD declination_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\'');
  20.         $this->addSql('ALTER TABLE sales_bundle__credit_note_line ADD CONSTRAINT FK_224DA1A74584665A FOREIGN KEY (product_id) REFERENCES products_bundle__product (id)');
  21.         $this->addSql('ALTER TABLE sales_bundle__credit_note_line ADD CONSTRAINT FK_224DA1A79941A932 FOREIGN KEY (declination_id) REFERENCES products_bundle__declination (id)');
  22.         $this->addSql('CREATE INDEX IDX_224DA1A74584665A ON sales_bundle__credit_note_line (product_id)');
  23.         $this->addSql('CREATE INDEX IDX_224DA1A79941A932 ON sales_bundle__credit_note_line (declination_id)');
  24.         $this->addSql('ALTER TABLE sales_bundle__delivery_note_line ADD product_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', ADD declination_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\'');
  25.         $this->addSql('ALTER TABLE sales_bundle__delivery_note_line ADD CONSTRAINT FK_CF8E237F4584665A FOREIGN KEY (product_id) REFERENCES products_bundle__product (id)');
  26.         $this->addSql('ALTER TABLE sales_bundle__delivery_note_line ADD CONSTRAINT FK_CF8E237F9941A932 FOREIGN KEY (declination_id) REFERENCES products_bundle__declination (id)');
  27.         $this->addSql('CREATE INDEX IDX_CF8E237F4584665A ON sales_bundle__delivery_note_line (product_id)');
  28.         $this->addSql('CREATE INDEX IDX_CF8E237F9941A932 ON sales_bundle__delivery_note_line (declination_id)');
  29.         $this->addSql('ALTER TABLE sales_bundle__invoice_line ADD product_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', ADD declination_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\'');
  30.         $this->addSql('ALTER TABLE sales_bundle__invoice_line ADD CONSTRAINT FK_891FCC0D4584665A FOREIGN KEY (product_id) REFERENCES products_bundle__product (id)');
  31.         $this->addSql('ALTER TABLE sales_bundle__invoice_line ADD CONSTRAINT FK_891FCC0D9941A932 FOREIGN KEY (declination_id) REFERENCES products_bundle__declination (id)');
  32.         $this->addSql('CREATE INDEX IDX_891FCC0D4584665A ON sales_bundle__invoice_line (product_id)');
  33.         $this->addSql('CREATE INDEX IDX_891FCC0D9941A932 ON sales_bundle__invoice_line (declination_id)');
  34.         $this->addSql('ALTER TABLE sales_bundle__order_line ADD product_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', ADD declination_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\'');
  35.         $this->addSql('ALTER TABLE sales_bundle__order_line ADD CONSTRAINT FK_38D3FC514584665A FOREIGN KEY (product_id) REFERENCES products_bundle__product (id)');
  36.         $this->addSql('ALTER TABLE sales_bundle__order_line ADD CONSTRAINT FK_38D3FC519941A932 FOREIGN KEY (declination_id) REFERENCES products_bundle__declination (id)');
  37.         $this->addSql('CREATE INDEX IDX_38D3FC514584665A ON sales_bundle__order_line (product_id)');
  38.         $this->addSql('CREATE INDEX IDX_38D3FC519941A932 ON sales_bundle__order_line (declination_id)');
  39.         $this->addSql('ALTER TABLE sales_bundle__quotation_line ADD product_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', ADD declination_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\'');
  40.         $this->addSql('ALTER TABLE sales_bundle__quotation_line ADD CONSTRAINT FK_5E40159A4584665A FOREIGN KEY (product_id) REFERENCES products_bundle__product (id)');
  41.         $this->addSql('ALTER TABLE sales_bundle__quotation_line ADD CONSTRAINT FK_5E40159A9941A932 FOREIGN KEY (declination_id) REFERENCES products_bundle__declination (id)');
  42.         $this->addSql('CREATE INDEX IDX_5E40159A4584665A ON sales_bundle__quotation_line (product_id)');
  43.         $this->addSql('CREATE INDEX IDX_5E40159A9941A932 ON sales_bundle__quotation_line (declination_id)');
  44.     }
  45.     public function down(Schema $schema): void
  46.     {
  47.         // this down() migration is auto-generated, please modify it to your needs
  48.         $this->addSql('ALTER TABLE sales_bundle__credit_note_line DROP FOREIGN KEY FK_224DA1A74584665A');
  49.         $this->addSql('ALTER TABLE sales_bundle__credit_note_line DROP FOREIGN KEY FK_224DA1A79941A932');
  50.         $this->addSql('DROP INDEX IDX_224DA1A74584665A ON sales_bundle__credit_note_line');
  51.         $this->addSql('DROP INDEX IDX_224DA1A79941A932 ON sales_bundle__credit_note_line');
  52.         $this->addSql('ALTER TABLE sales_bundle__credit_note_line DROP product_id, DROP declination_id');
  53.         $this->addSql('ALTER TABLE sales_bundle__delivery_note_line DROP FOREIGN KEY FK_CF8E237F4584665A');
  54.         $this->addSql('ALTER TABLE sales_bundle__delivery_note_line DROP FOREIGN KEY FK_CF8E237F9941A932');
  55.         $this->addSql('DROP INDEX IDX_CF8E237F4584665A ON sales_bundle__delivery_note_line');
  56.         $this->addSql('DROP INDEX IDX_CF8E237F9941A932 ON sales_bundle__delivery_note_line');
  57.         $this->addSql('ALTER TABLE sales_bundle__delivery_note_line DROP product_id, DROP declination_id');
  58.         $this->addSql('ALTER TABLE sales_bundle__invoice_line DROP FOREIGN KEY FK_891FCC0D4584665A');
  59.         $this->addSql('ALTER TABLE sales_bundle__invoice_line DROP FOREIGN KEY FK_891FCC0D9941A932');
  60.         $this->addSql('DROP INDEX IDX_891FCC0D4584665A ON sales_bundle__invoice_line');
  61.         $this->addSql('DROP INDEX IDX_891FCC0D9941A932 ON sales_bundle__invoice_line');
  62.         $this->addSql('ALTER TABLE sales_bundle__invoice_line DROP product_id, DROP declination_id');
  63.         $this->addSql('ALTER TABLE sales_bundle__order_line DROP FOREIGN KEY FK_38D3FC514584665A');
  64.         $this->addSql('ALTER TABLE sales_bundle__order_line DROP FOREIGN KEY FK_38D3FC519941A932');
  65.         $this->addSql('DROP INDEX IDX_38D3FC514584665A ON sales_bundle__order_line');
  66.         $this->addSql('DROP INDEX IDX_38D3FC519941A932 ON sales_bundle__order_line');
  67.         $this->addSql('ALTER TABLE sales_bundle__order_line DROP product_id, DROP declination_id');
  68.         $this->addSql('ALTER TABLE sales_bundle__quotation_line DROP FOREIGN KEY FK_5E40159A4584665A');
  69.         $this->addSql('ALTER TABLE sales_bundle__quotation_line DROP FOREIGN KEY FK_5E40159A9941A932');
  70.         $this->addSql('DROP INDEX IDX_5E40159A4584665A ON sales_bundle__quotation_line');
  71.         $this->addSql('DROP INDEX IDX_5E40159A9941A932 ON sales_bundle__quotation_line');
  72.         $this->addSql('ALTER TABLE sales_bundle__quotation_line DROP product_id, DROP declination_id');
  73.     }
  74. }