Remove Content edit box from ALL pages (not posts)

Found the following solution which works to remove the content editor from all “page” content. Just chuck it in the functions.php file

add_action('admin_init', 'remove_textarea');

    function remove_textarea() {
            remove_post_type_support( 'page', 'editor' );
    }