# fluentform/3.6.51/app/Databases/Migrations/FormSubmissionDetails.php

Fluent Forms – Customizable Contact Forms, Survey, Quiz, &amp; Conversational Form Builder, version 3.6.51. 34 lines.

- Page: https://pluginprobe.com/plugins/fluentform/3.6.51/code/app/Databases/Migrations/FormSubmissionDetails.php
- Raw: https://pluginprobe.com/plugins/fluentform/3.6.51/raw/app/Databases/Migrations/FormSubmissionDetails.php
- Modified: 2019-12-31T13:00:46+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/fluentform/3.6.51/code/app/Databases/Migrations/FormSubmissionDetails.php#L10-L20`.

```php
<?php

namespace FluentForm\App\Databases\Migrations;

class FormSubmissionDetails
{
    /**
     * Migrate the table.
     *
     * @return void
     */
    public static function migrate()
    {
        global $wpdb;

        $charsetCollate = $wpdb->get_charset_collate();
        $table = $wpdb->prefix . 'fluentform_entry_details';
        if ($wpdb->get_var("SHOW TABLES LIKE '$table'") != $table) {
            $sql = "CREATE TABLE $table (
			  `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
			  `form_id` BIGINT(20) UNSIGNED NULL,
			  `submission_id` BIGINT(20) UNSIGNED NULL,
			  `field_name` VARCHAR(255) NULL,
			  `sub_field_name` VARCHAR(255) NULL,
			  `field_value` LONGTEXT NULL,
			  PRIMARY KEY (`id`)) $charsetCollate;";
            require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
            dbDelta($sql);
        }

        update_option('fluentform_entry_details_migrated', 'yes', 'no');

    }
}
```
