WordPress Version: 5.3
/**
* Execute changes made in WordPress 2.5.0.
*
* @ignore
* @since 2.5.0
*
* @global int $wp_current_db_version The old (current) database version.
*/
function upgrade_250()
{
global $wp_current_db_version;
if ($wp_current_db_version < 6689) {
populate_roles_250();
}
}