How to Hide the "Pantheon Migrate" Admin Menu

function plt_hide_bv_pantheon_migration_menus() {
	//Hide the "Pantheon Migrate" menu.
	remove_menu_page('pantheon');
}

add_action('admin_menu', 'plt_hide_bv_pantheon_migration_menus', 11);

Where do I put this code?