vendor/bluue/products-bundle/migrations/Version20221228104628.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 Version20221228104628 extends AbstractMigration
  7. {
  8.     public function up(Schema $schema): void
  9.     {
  10.         $this->addSql('DROP INDEX wholesale_price ON products_bundle__declination');
  11.         $this->addSql('DROP INDEX is_active ON products_bundle__declination');
  12.         $this->addSql('DROP INDEX reference ON products_bundle__declination');
  13.         $this->addSql('DROP INDEX sell_price ON products_bundle__declination');
  14.         $this->addSql('ALTER TABLE products_bundle__declination DROP reference, DROP wholesale_price, DROP sell_price, DROP is_active');
  15.         $this->addSql('ALTER TABLE products_bundle__product DROP FOREIGN KEY FK_C6C10D4A38248176');
  16.         $this->addSql('ALTER TABLE products_bundle__product DROP FOREIGN KEY FK_C6C10D4A3506A35B');
  17.         $this->addSql('ALTER TABLE products_bundle__product DROP FOREIGN KEY FK_C6C10D4AAE870F68');
  18.         $this->addSql('DROP INDEX is_active ON products_bundle__product');
  19.         $this->addSql('DROP INDEX reference ON products_bundle__product');
  20.         $this->addSql('DROP INDEX name ON products_bundle__product');
  21.         $this->addSql('DROP INDEX IDX_C6C10D4AAE870F68 ON products_bundle__product');
  22.         $this->addSql('DROP INDEX sell_price ON products_bundle__product');
  23.         $this->addSql('DROP INDEX wholesale_price ON products_bundle__product');
  24.         $this->addSql('DROP INDEX IDX_C6C10D4A3506A35B ON products_bundle__product');
  25.         $this->addSql('DROP INDEX IDX_C6C10D4A38248176 ON products_bundle__product');
  26.         $this->addSql('ALTER TABLE products_bundle__product DROP eco_part_id, DROP tax_rule_id, DROP currency_id, DROP eco_part_amount, DROP name, DROP reference, DROP summary, DROP description, DROP source, DROP wholesale_price, DROP sell_price, DROP changeable_tax_rule, DROP is_active');
  27.         $this->addSql('ALTER TABLE products_bundle__product_context CHANGE name name VARCHAR(255) NOT NULL, CHANGE changeable_tax_rule changeable_tax_rule TINYINT(1) NOT NULL');
  28.     }
  29.     public function down(Schema $schema): void
  30.     {
  31.     }
  32. }