You are here

function custom_breadcrumbs_update_6001 in Custom Breadcrumbs 7.2

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

Add the menu flag.

File

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

Code

function custom_breadcrumbs_update_6001() {
  db_add_field('custom_breadcrumb', 'set_active_menu', array(
    'type' => 'int',
    'default' => 1,
    'NOT NULL' => TRUE,
  ));
  return t('Added set_active_menu flag to custom_breadcrumb database table.');
}