upgrade_600

The timeline below displays how wordpress function upgrade_600 has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

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();
    }
}