You are here

function custom_breadcrumbs_update_6101 in Custom Breadcrumbs 7.2

Same name and namespace in other branches
  1. 6.2 custom_breadcrumbs.install \custom_breadcrumbs_update_6101()
  2. 6 custom_breadcrumbs.install \custom_breadcrumbs_update_6101()
  3. 7 custom_breadcrumbs.install \custom_breadcrumbs_update_6101()

Remove the set_active_menu field because it is no longer used.

File

./custom_breadcrumbs.install, line 156
Install file for the custom_breadcrumbs module.

Code

function custom_breadcrumbs_update_6101() {
  db_drop_field('custom_breadcrumb', 'set_active_menu');
  return t('Removed the set_active_menu field from custom breadcrumb database table because it is no longer used.');
}