vendor/bluue/customers-bundle/migrations/Version20221212090020.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace CustomersBundleMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. final class Version20221212090020 extends AbstractMigration
  7. {
  8.     public function up(Schema $schema): void
  9.     {
  10.         $this->addSql('ALTER TABLE customers_bundle__customer_group ADD percentage_discount NUMERIC(20, 2) DEFAULT NULL');
  11.         $this->addSql('CREATE INDEX percentage_discount ON customers_bundle__customer_group (percentage_discount)');
  12.     }
  13.     public function down(Schema $schema): void
  14.     {
  15.     }
  16. }