vendor/bluue/products-bundle/migrations/Version20240715151047.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 Version20240715151047 extends AbstractMigration
  7. {
  8.     public function up(Schema $schema): void
  9.     {
  10.         $this->addSql(
  11.             'ALTER TABLE products_bundle__product_context ADD visibility VARCHAR(10) DEFAULT \'both\' NOT NULL'
  12.         );
  13.     }
  14.     public function down(Schema $schema): void
  15.     {
  16.         $this->addSql('ALTER TABLE products_bundle__product_context DROP visibility');
  17.     }
  18. }