get_charset_collate(); $table = $wpdb->prefix . static::$tableName; if ($wpdb->get_var("SHOW TABLES LIKE '$table'") != $table) { $sql = "CREATE TABLE $table ( `id` BIGINT(20) UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT, `object_type` VARCHAR(192) NULL, `object_id` BIGINT(20) NULL, `key` VARCHAR(192) NULL, `value` LONGTEXT NULL, `created_at` TIMESTAMP NULL, `updated_at` TIMESTAMP NULL, INDEX `idx_object_type` (`object_type`), INDEX `idx_object_id` (`object_id`), INDEX `idx_key` (`key`) ) $charsetCollate;"; $created = dbDelta($sql); return $created; } else { static::alterTable($table); } return false; } public static function alterTable($table) { static::addMissingIndexes($table); } public static function addMissingIndexes($table) { global $wpdb; // Escape table name $table = esc_sql($table); // Get existing indexes $existing_indexes = $wpdb->get_results("SHOW INDEX FROM `$table`"); $existing_index_names = []; foreach ($existing_indexes as $index) { $existing_index_names[] = $index->Key_name; } // Desired indexes $indexes = [ 'idx_object_type' => 'object_type', 'idx_object_id' => 'object_id', 'idx_key' => 'key', ]; // Add missing indexes foreach ($indexes as $index_name => $column_name) { if (!in_array($index_name, $existing_index_names)) { $sql = "ALTER TABLE `$table` ADD INDEX `$index_name` (`$column_name`)"; $wpdb->query($sql); } } } }