This is the code:
// strip trailing comma and linebreak
$sql = substr($sql, 0, -2);
$charset = $wpdb->charset ? $wpdb->charset : ‘utf8’;
$collate = $wpdb->collate ? $wpdb->collate : ‘utf8_general_ci’;
$sql .= “\n)\nDEFAULT CHARACTER SET $charset COLLATE $collate;”;
What do you mean exactly with?
Replace the charset
$charset = ‘utf8’;
$collate = ‘utf8_general_ci’;
There are no changes.