<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20250123141559 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE tray DROP INDEX UNIQ_C753C7977A88E00, ADD INDEX IDX_C753C7977A88E00 (locked_by_id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE tray DROP INDEX IDX_C753C7977A88E00, ADD UNIQUE INDEX UNIQ_C753C7977A88E00 (locked_by_id)');
}
}