diff --git src/wp-admin/includes/upgrade.php src/wp-admin/includes/upgrade.php
index cb53d2f..c96ad42 100644
--- src/wp-admin/includes/upgrade.php
+++ src/wp-admin/includes/upgrade.php
@@ -2630,10 +2630,11 @@ function pre_schema_upgrade() {
 	}
 
 	// Upgrade versions prior to 4.4.
-	if ( $wp_current_db_version < 34370 ) {
-		// If compatible termmeta table is found, use it, but enforce a proper index.
+	if ( $wp_current_db_version < 34976 ) {
+		// If compatible termmeta table is found, use it, but enforce a proper index and update collation.
 		if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->termmeta}'" ) && $wpdb->get_results( "SHOW INDEX FROM {$wpdb->termmeta} WHERE Column_name = 'meta_key'" ) ) {
 			$wpdb->query( "ALTER TABLE $wpdb->termmeta DROP INDEX meta_key, ADD INDEX meta_key(meta_key(191))" );
+			maybe_convert_table_to_utf8mb4( $wpdb->termmeta );
 		}
 	}
 }
diff --git src/wp-includes/version.php src/wp-includes/version.php
index f245e1f..cafa299 100644
--- src/wp-includes/version.php
+++ src/wp-includes/version.php
@@ -11,7 +11,7 @@ $wp_version = '4.4-alpha-33636-src';
  *
  * @global int $wp_db_version
  */
-$wp_db_version = 34903;
+$wp_db_version = 34976;
 
 /**
  * Holds the TinyMCE version
