Plugin Directory

Changeset 2880713


Ignore:
Timestamp:
03/15/2023 05:47:42 PM (3 years ago)
Author:
davidaawow
Message:
  • Fixed table collations
Location:
wiflydemofeedbackcomposer
Files:
26 added
2 edited

Legend:

Unmodified
Added
Removed
  • wiflydemofeedbackcomposer/trunk/app/class.wifly-demo-feedback-composer.php

    r2865587 r2880713  
    77        $wpdb->query("create table if not exists {$wpdb->prefix}feedback_category(
    88            `id` int primary key auto_increment,
    9             `title` text
    10         )");
     9            `title` text)
     10            CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
     11        ");
    1112        $wpdb->query("create table if not exists {$wpdb->prefix}feedback(
    1213            `id` int primary key auto_increment,
     
    1415            `category_id` int,
    1516            `value` text,
    16             foreign key (category_id) references {$wpdb->prefix}feedback_category(`id`)
    17         )");
     17            foreign key (category_id) references {$wpdb->prefix}feedback_category(`id`))
     18            CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
     19        ");
    1820    }
    1921
  • wiflydemofeedbackcomposer/trunk/readme.txt

    r2865604 r2880713  
    55Tested up to: 6.1.1
    66Requires PHP: 7.4
    7 Stable tag: 1.0.2
     7Stable tag: 1.0.3
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.