🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 13:00:45 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
thedasstores.com
/
wp-content
/
plugins
/
mailpoet
/
lib
/
Migrations
/
Db
📍 /home/therahul/thedasstores.com/wp-content/plugins/mailpoet/lib/Migrations/Db
🔄 Refresh
✏️
Editing: Migration_20230503_210945.php
Writable
<?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))" ); } } }
💾 Save Changes
❌ Cancel