diff --git src/wp-admin/includes/upgrade.php src/wp-admin/includes/upgrade.php
index cb53d2f..3f837ac 100644
|
|
|
function pre_schema_upgrade() {
|
| 2631 | 2631 | |
| 2632 | 2632 | // Upgrade versions prior to 4.4. |
| 2633 | 2633 | if ( $wp_current_db_version < 34370 ) { |
| 2634 | | // If compatible termmeta table is found, use it, but enforce a proper index. |
| | 2634 | // If compatible termmeta table is found, use it, but enforce a proper index and update collation. |
| 2635 | 2635 | if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->termmeta}'" ) && $wpdb->get_results( "SHOW INDEX FROM {$wpdb->termmeta} WHERE Column_name = 'meta_key'" ) ) { |
| 2636 | 2636 | $wpdb->query( "ALTER TABLE $wpdb->termmeta DROP INDEX meta_key, ADD INDEX meta_key(meta_key(191))" ); |
| | 2637 | maybe_convert_table_to_utf8mb4( $wpdb->termmeta ); |
| 2637 | 2638 | } |
| 2638 | 2639 | } |
| 2639 | 2640 | } |