# fluent-support/trunk/database/Migrations/ActivityMigrator.php

Fluent Support – Helpdesk &amp; Customer Support Ticket System, version trunk. 84 lines.

- Page: https://pluginprobe.com/plugins/fluent-support/trunk/code/database/Migrations/ActivityMigrator.php
- Raw: https://pluginprobe.com/plugins/fluent-support/trunk/raw/database/Migrations/ActivityMigrator.php
- Modified: 2026-04-09T13:48:06+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluent-support/trunk/code/database/Migrations/ActivityMigrator.php#L10-L20`.

```php
<?php

namespace FluentSupport\Database\Migrations;

class ActivityMigrator
{
    static $tableName = 'fs_activities';

    public static function migrate()
    {
        global $wpdb;

        $charsetCollate = $wpdb->get_charset_collate();

        $table = $wpdb->prefix . static::$tableName;

        if ($wpdb->get_var($wpdb->prepare("SHOW TABLES LIKE %s", $table)) != $table) {
            $sql = "CREATE TABLE $table (
                `id` BIGINT(20) UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
                `person_id` BIGINT(20) NULL,
                `person_type` VARCHAR(192) NULL,
                `event_type` VARCHAR(192) NULL,
                `object_id` BIGINT(20) NULL,
                `object_type` VARCHAR(192) NULL,
                `description` MEDIUMTEXT NULL,
                `created_at` TIMESTAMP NULL,
                `updated_at` TIMESTAMP NULL,
                INDEX `idx_person_id` (`person_id`),
                INDEX `idx_event_type` (`event_type`),
                INDEX `idx_object_id` (`object_id`),
                INDEX `idx_object_type` (`object_type`),
                INDEX `idx_created_at` (`created_at`)
            ) $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;

        // $table is always $wpdb->prefix . 'fs_activities' — not user input.
        // esc_sql() is the correct escaping for SQL identifiers; $wpdb->prepare()
        // cannot quote identifiers in WP < 6.2 (no %i placeholder available).
        $table = esc_sql($table);

        // Get existing indexes
        $existing_indexes = $wpdb->get_results("SHOW INDEX FROM `{$table}`"); // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared
        $existing_index_names = [];

        foreach ($existing_indexes as $index) {
            $existing_index_names[] = $index->Key_name;
        }

        // Desired indexes — keys and values are all hardcoded string literals.
        $indexes = [
            'idx_person_id'   => 'person_id',
            'idx_event_type'  => 'event_type',
            'idx_object_id'   => 'object_id',
            'idx_object_type' => 'object_type',
            'idx_created_at'  => 'created_at',
        ];

        // Add missing indexes. $table is esc_sql()'d above; $index_name and
        // $column_name are hardcoded array literals — no user input reaches this query.
        foreach ($indexes as $index_name => $column_name) {
            if (!in_array($index_name, $existing_index_names)) {
                // phpcs:ignore PluginCheck.Security.DirectDB.UnescapedDBParameter,WordPress.DB.PreparedSQL.NotPrepared -- all identifiers are either esc_sql()'d or hardcoded literals.
                $wpdb->query("ALTER TABLE `{$table}` ADD INDEX `{$index_name}` (`{$column_name}`)");
            }
        }
    }
}

```
