Is it possible to remove the content editor (RTF field) for a certain user / role?

Actually why is it when I ask these things I come across the answer?

Not the exact answer I was after but found how to hide the content editor completely so then just put in a check for a certain user ID and it’s working.

Pretty sure this wouldn’t do anything harmful anywhere as it’s just hiding the editor so nothing will be lost at any point hopefully?

function remove_pages_editor(){

    $user = wp_get_current_user();
    if ($user->ID == 2) {
        remove_post_type_support( 'page', 'editor' );
    }
}   
add_action( 'init', 'remove_pages_editor' );