WordPress Version: 6.1
/**
* Executes changes made in WordPress 6.0.0.
*
* @ignore
* @since 6.0.0
*
* @global int $wp_current_db_version The old (current) database version.
*/
function upgrade_600()
{
global $wp_current_db_version;
if ($wp_current_db_version < 53011) {
wp_update_user_counts();
}
}