Index: src/wp-admin/includes/upgrade.php
===================================================================
--- src/wp-admin/includes/upgrade.php	(revision 48749)
+++ src/wp-admin/includes/upgrade.php	(working copy)
@@ -2174,9 +2174,6 @@
 	global $wp_current_db_version;
 
 	if ( $wp_current_db_version < 48121 ) {
-		update_option( 'finished_updating_comment_type', 0 );
-		wp_schedule_single_event( time() + ( 1 * MINUTE_IN_SECONDS ), 'wp_update_comment_type_batch' );
-
 		$comment_previously_approved = get_option( 'comment_whitelist', '' );
 		update_option( 'comment_previously_approved', $comment_previously_approved );
 		delete_option( 'comment_whitelist' );
@@ -2198,6 +2195,11 @@
 		delete_option( 'blacklist_keys' );
 		delete_option( 'blocklist_keys' );
 	}
+
+	if ( $wp_current_db_version < 48748 ) {
+		update_option( 'finished_updating_comment_type', 0 );
+		wp_schedule_single_event( time() + ( 1 * MINUTE_IN_SECONDS ), 'wp_update_comment_type_batch' );
+	}
 }
 
 /**
Index: src/wp-includes/version.php
===================================================================
--- src/wp-includes/version.php	(revision 48749)
+++ src/wp-includes/version.php	(working copy)
@@ -20,7 +20,7 @@
  *
  * @global int $wp_db_version
  */
-$wp_db_version = 48575;
+$wp_db_version = 48748;
 
 /**
  * Holds the TinyMCE version.
