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

Fluent Support – Helpdesk &amp; Customer Support Ticket System, version 1.5.4. 33 lines.

- Page: https://pluginprobe.com/plugins/fluent-support/1.5.4/code/database/Migrations/ActivityMigrator.php
- Raw: https://pluginprobe.com/plugins/fluent-support/1.5.4/raw/database/Migrations/ActivityMigrator.php
- Modified: 2021-11-12T14:57:38+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/1.5.4/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("SHOW TABLES LIKE '$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
            ) $charsetCollate;";
            dbDelta($sql);
        }
    }
}

```
