<?phpdeclare(strict_types=1);namespace DoctrineMigrations;use Doctrine\DBAL\Schema\Schema;use Doctrine\Migrations\AbstractMigration;final class Version20210513193537 extends AbstractMigration{ public function up(Schema $schema): void { $this->addSql('CREATE UNIQUE INDEX UNIQ_C744045577153098 ON client (code)'); } public function down(Schema $schema): void { $this->addSql('DROP INDEX UNIQ_C744045577153098 ON client'); }}