vendor/bluue/products-bundle/migrations/Version20240725134330.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace ProductsBundleMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. final class Version20240725134330 extends AbstractMigration
  7. {
  8.     public function up(Schema $schema): void
  9.     {
  10.         $this->addSql('ALTER TABLE products_bundle__product_context ADD product_redirect_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', ADD category_redirect_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', ADD redirect_type VARCHAR(15) DEFAULT \'404\' NOT NULL');
  11.         $this->addSql('ALTER TABLE products_bundle__product_context ADD CONSTRAINT FK_F37E0B8C18021952 FOREIGN KEY (product_redirect_id) REFERENCES products_bundle__product (id)');
  12.         $this->addSql('ALTER TABLE products_bundle__product_context ADD CONSTRAINT FK_F37E0B8C3B6C526 FOREIGN KEY (category_redirect_id) REFERENCES categories_bundle__category (id)');
  13.         $this->addSql('CREATE INDEX IDX_F37E0B8C18021952 ON products_bundle__product_context (product_redirect_id)');
  14.         $this->addSql('CREATE INDEX IDX_F37E0B8C3B6C526 ON products_bundle__product_context (category_redirect_id)');
  15.     }
  16.     public function down(Schema $schema): void
  17.     {
  18.         $this->addSql('ALTER TABLE products_bundle__product_context DROP FOREIGN KEY FK_F37E0B8C18021952');
  19.         $this->addSql('ALTER TABLE products_bundle__product_context DROP FOREIGN KEY FK_F37E0B8C3B6C526');
  20.         $this->addSql('DROP INDEX IDX_F37E0B8C18021952 ON products_bundle__product_context');
  21.         $this->addSql('DROP INDEX IDX_F37E0B8C3B6C526 ON products_bundle__product_context');
  22.         $this->addSql('ALTER TABLE products_bundle__product_context DROP product_redirect_id, DROP category_redirect_id, DROP redirect_type');
  23.     }
  24. }