# fluent-support/1.4.1/database/Migrations/ConversationsMigrator.php

Fluent Support – Helpdesk &amp; Customer Support Ticket System, version 1.4.1. 35 lines.

- Page: https://pluginprobe.com/plugins/fluent-support/1.4.1/code/database/Migrations/ConversationsMigrator.php
- Raw: https://pluginprobe.com/plugins/fluent-support/1.4.1/raw/database/Migrations/ConversationsMigrator.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.4.1/code/database/Migrations/ConversationsMigrator.php#L10-L20`.

```php
<?php

namespace FluentSupport\Database\Migrations;

class ConversationsMigrator
{
    static $tableName = 'fs_conversations';

    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,
                `serial` INT(11) UNSIGNED DEFAULT 1,
                `ticket_id` BIGINT(20) UNSIGNED NOT NULL,
                `person_id` BIGINT(20) UNSIGNED NOT NULL,
                `conversation_type` VARCHAR(100) DEFAULT 'response',
                `content` LONGTEXT NULL,
                `source` VARCHAR(100) DEFAULT 'web',
                `content_hash` VARCHAR(192) NULL,
                `message_id` VARCHAR(192) NULL,
                `is_important` ENUM('yes', 'no') DEFAULT 'no',
                `created_at` TIMESTAMP NULL,
                `updated_at` TIMESTAMP NULL
            ) $charsetCollate;";
            dbDelta($sql);
        }
    }
}

```
