44 lines
1.2 KiB
PHP
Executable File
44 lines
1.2 KiB
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Mautic\Migrations;
|
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
|
use Mautic\CoreBundle\Doctrine\PreUpAssertionMigration;
|
|
use Mautic\LeadBundle\Entity\ListLead;
|
|
|
|
final class Version20231205094436 extends PreUpAssertionMigration
|
|
{
|
|
protected function preUpAssertions(): void
|
|
{
|
|
$this->skipAssertion(function (Schema $schema) {
|
|
return $schema->getTable($this->getTableName())->hasIndex($this->getIndexName());
|
|
}, sprintf('Index %s already exists', $this->getIndexName()));
|
|
}
|
|
|
|
public function up(Schema $schema): void
|
|
{
|
|
$this->addSql(sprintf(
|
|
'ALTER TABLE %s ADD INDEX %s (lead_id, leadlist_id, manually_removed)',
|
|
$this->getTableName(),
|
|
$this->getIndexName()
|
|
));
|
|
}
|
|
|
|
public function down(Schema $schema): void
|
|
{
|
|
$this->addSql('ALTER TABLE '.$this->getTableName().' DROP INDEX '.$this->getIndexName());
|
|
}
|
|
|
|
private function getTableName(): string
|
|
{
|
|
return $this->prefix.ListLead::TABLE_NAME;
|
|
}
|
|
|
|
private function getIndexName(): string
|
|
{
|
|
return "{$this->prefix}lead_id_lists_id_removed";
|
|
}
|
|
}
|