You are here

function custom_breadcrumbs_update_6201 in Custom Breadcrumbs 7.2

Same name and namespace in other branches
  1. 6.2 custom_breadcrumbs.install \custom_breadcrumbs_update_6201()

Adds indices to custom_breadcrumb table to improve performance.

File

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

Code

function custom_breadcrumbs_update_6201() {
  db_add_index('custom_breadcrumb', 'language', array(
    'language',
  ));
  db_add_index('custom_breadcrumb', 'node_language', array(
    'node_type',
    'language',
  ));
  return t('Added indices to custom_breadcrumb table to improve performance.');
}