27 lines
765 B
PHP
27 lines
765 B
PHP
<?php declare(strict_types = 1);
|
|
|
|
namespace MailPoet\Migrations\Db;
|
|
|
|
if (!defined('ABSPATH')) exit;
|
|
|
|
|
|
use MailPoet\Entities\SubscriberEntity;
|
|
use MailPoet\Migrator\DbMigration;
|
|
|
|
class Migration_20230503_210945 extends DbMigration {
|
|
public function run(): void {
|
|
$subscribersTable = $this->getTableName(SubscriberEntity::class);
|
|
if (!$this->indexExists($subscribersTable, 'first_name')) {
|
|
$this->connection->executeQuery(
|
|
"ALTER TABLE `{$subscribersTable}`
|
|
ADD INDEX `first_name` (`first_name`(10))"
|
|
);
|
|
}
|
|
if (!$this->indexExists($subscribersTable, 'last_name')) {
|
|
$this->connection->executeQuery(
|
|
"ALTER TABLE `{$subscribersTable}`
|
|
ADD INDEX `last_name` (`last_name`(10))"
|
|
);
|
|
}
|
|
}
|
|
}
|