<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20250204141908 extends AbstractMigration
{
public function getDescription(): string
{
return 'Delete index for column code';
}
public function up(Schema $schema): void
{
$this->addSql('DROP INDEX UNIQ_C11D7DD177153098 ON promotion');
}
public function down(Schema $schema): void
{
$this->addSql('CREATE UNIQUE INDEX UNIQ_C11D7DD177153098 ON promotion (code)');
}
}