vendor/bluue/shipments-bundle/migrations/Version20231219144422.php line 1

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