migrations/Version20230313205525.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace CoreMigrations;
  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 Version20230313205525 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         // this up() migration is auto-generated, please modify it to your needs
  18.         $this->addSql('ALTER TABLE crm_bundle__opportunity_product ADD product_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\'');
  19.         $this->addSql('ALTER TABLE crm_bundle__opportunity_product ADD CONSTRAINT FK_C34790E34584665A FOREIGN KEY (product_id) REFERENCES products_bundle__product (id)');
  20.         $this->addSql('CREATE INDEX IDX_C34790E34584665A ON crm_bundle__opportunity_product (product_id)');
  21.         $this->addSql('ALTER TABLE product_returns_bundle__product_return_line CHANGE options options LONGTEXT DEFAULT NULL COMMENT \'(DC2Type:json)\'');
  22.         $this->addSql('ALTER TABLE products_bundle__attachment CHANGE options options LONGTEXT NOT NULL COMMENT \'(DC2Type:json)\'');
  23.         $this->addSql('ALTER TABLE products_bundle__attribute CHANGE attribute_group_id attribute_group_id BINARY(16) NOT NULL COMMENT \'(DC2Type:uuid)\'');
  24.         $this->addSql('ALTER TABLE products_bundle__price_rule ADD customer_group_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', ADD customer_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\'');
  25.         $this->addSql('ALTER TABLE products_bundle__price_rule ADD CONSTRAINT FK_3C8F79A7D2919A68 FOREIGN KEY (customer_group_id) REFERENCES customers_bundle__customer_group (id)');
  26.         $this->addSql('ALTER TABLE products_bundle__price_rule ADD CONSTRAINT FK_3C8F79A79395C3F3 FOREIGN KEY (customer_id) REFERENCES customers_bundle__customer (id)');
  27.         $this->addSql('CREATE INDEX IDX_3C8F79A7D2919A68 ON products_bundle__price_rule (customer_group_id)');
  28.         $this->addSql('CREATE INDEX IDX_3C8F79A79395C3F3 ON products_bundle__price_rule (customer_id)');
  29.         $this->addSql('ALTER TABLE stocks_bundle__stock_movement ADD product_return_line_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\'');
  30.         $this->addSql('ALTER TABLE stocks_bundle__stock_movement ADD CONSTRAINT FK_11E6623A83A19B1 FOREIGN KEY (product_return_line_id) REFERENCES product_returns_bundle__product_return_line (id)');
  31.         $this->addSql('CREATE INDEX IDX_11E6623A83A19B1 ON stocks_bundle__stock_movement (product_return_line_id)');
  32.     }
  33.     public function down(Schema $schema): void
  34.     {
  35.         // this down() migration is auto-generated, please modify it to your needs
  36.         $this->addSql('ALTER TABLE products_bundle__price_rule DROP FOREIGN KEY FK_3C8F79A7D2919A68');
  37.         $this->addSql('ALTER TABLE products_bundle__price_rule DROP FOREIGN KEY FK_3C8F79A79395C3F3');
  38.         $this->addSql('DROP INDEX IDX_3C8F79A7D2919A68 ON products_bundle__price_rule');
  39.         $this->addSql('DROP INDEX IDX_3C8F79A79395C3F3 ON products_bundle__price_rule');
  40.         $this->addSql('ALTER TABLE products_bundle__price_rule DROP customer_group_id, DROP customer_id');
  41.         $this->addSql('ALTER TABLE crm_bundle__opportunity_product DROP FOREIGN KEY FK_C34790E34584665A');
  42.         $this->addSql('DROP INDEX IDX_C34790E34584665A ON crm_bundle__opportunity_product');
  43.         $this->addSql('ALTER TABLE crm_bundle__opportunity_product DROP product_id');
  44.         $this->addSql('ALTER TABLE products_bundle__attribute CHANGE attribute_group_id attribute_group_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\'');
  45.         $this->addSql('ALTER TABLE products_bundle__attachment CHANGE options options LONGTEXT NOT NULL COLLATE `utf8mb4_bin`');
  46.         $this->addSql('ALTER TABLE stocks_bundle__stock_movement DROP FOREIGN KEY FK_11E6623A83A19B1');
  47.         $this->addSql('DROP INDEX IDX_11E6623A83A19B1 ON stocks_bundle__stock_movement');
  48.         $this->addSql('ALTER TABLE stocks_bundle__stock_movement DROP product_return_line_id');
  49.         $this->addSql('ALTER TABLE product_returns_bundle__product_return_line CHANGE options options LONGTEXT DEFAULT NULL COLLATE `utf8mb4_bin`');
  50.     }
  51. }