Changeset 34978
- Timestamp:
- 10/09/2015 02:06:15 AM (9 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/upgrade.php
r34912 r34978 2631 2631 2632 2632 // Upgrade versions prior to 4.4. 2633 if ( $wp_current_db_version < 34 370) {2634 // If compatible termmeta table is found, use it, but enforce a proper index .2633 if ( $wp_current_db_version < 34978 ) { 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 } -
trunk/src/wp-includes/version.php
r34937 r34978 12 12 * @global int $wp_db_version 13 13 */ 14 $wp_db_version = 349 03;14 $wp_db_version = 34978; 15 15 16 16 /**
Note: See TracChangeset
for help on using the changeset viewer.