vendor/bluue/shipments-bundle/migrations/Version20241016123540.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 Version20241016123540 extends AbstractMigration
  7. {
  8.     public function up(Schema $schema): void
  9.     {
  10.         $this->addSql('ALTER TABLE shipments_bundle__order_options ADD label_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\'');
  11.         $this->addSql('ALTER TABLE shipments_bundle__order_options ADD CONSTRAINT FK_3F7A5CB133B92F39 FOREIGN KEY (label_id) REFERENCES file_manager (id)');
  12.         $this->addSql('CREATE UNIQUE INDEX UNIQ_3F7A5CB133B92F39 ON shipments_bundle__order_options (label_id)');
  13.     }
  14.     public function down(Schema $schema): void
  15.     {
  16.         $this->addSql('ALTER TABLE shipments_bundle__order_options DROP FOREIGN KEY FK_3F7A5CB133B92F39');
  17.         $this->addSql('DROP INDEX UNIQ_3F7A5CB133B92F39 ON shipments_bundle__order_options');
  18.         $this->addSql('ALTER TABLE shipments_bundle__order_options DROP label_id');
  19.     }
  20. }