vendor/bluue/import-products-bundle/migrations/Version20241206133559.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace ImportProductsBundleMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. final class Version20241206133559 extends AbstractMigration
  7. {
  8.     public function up(Schema $schema): void
  9.     {
  10.         $this->addSql('ALTER TABLE import_products_bundle__import ADD options JSON NOT NULL');
  11.     }
  12.     public function postUp(Schema $schema): void
  13.     {
  14.         parent::postUp($schema);
  15.         $conn $this->connection;
  16.         $conn->executeStatement("UPDATE import_products_bundle__import SET options = '[]'");
  17.     }
  18.     public function down(Schema $schema): void
  19.     {
  20.         $this->addSql('ALTER TABLE import_products_bundle__import DROP options');
  21.     }
  22. }