Spaces:
No application file
No application file
File size: 1,058 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
<?php
declare(strict_types=1);
namespace Mautic\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Mautic\CoreBundle\Doctrine\PreUpAssertionMigration;
final class Version20211026152443 extends PreUpAssertionMigration
{
protected function preUpAssertions(): void
{
$this->skipAssertion(
fn (Schema $schema) => $schema->getTable($this->getTableName())->hasIndex($this->getIndexName()),
"Index {$this->getIndexName()} already exists"
);
}
public function up(Schema $schema): void
{
$this->addSql("CREATE INDEX {$this->getIndexName()} ON {$this->getTableName()} (`object`, `field_order`, `is_published`)");
}
public function down(Schema $schema): void
{
$this->addSql("DROP INDEX {$this->getIndexName()} ON {$this->getTableName()}");
}
private function getTableName(): string
{
return "{$this->prefix}lead_fields";
}
private function getIndexName(): string
{
return "{$this->prefix}idx_object_field_order_is_published";
}
}
|