You are here

function custom_breadcrumbs_paths_update_6000 in Custom Breadcrumbs 7.2

Same name and namespace in other branches
  1. 6.2 custom_breadcrumbs_paths/custom_breadcrumbs_paths.install \custom_breadcrumbs_paths_update_6000()

Adds indices to custom_breadcrumb_paths table to improve performance.

File

custom_breadcrumbs_paths/custom_breadcrumbs_paths.install, line 111
Install file for the custom_breadcrumbs module.

Code

function custom_breadcrumbs_paths_update_6000() {
  db_add_index('custom_breadcrumbs_paths', 'language', array(
    'language',
  ));
  db_add_index('custom_breadcrumbs_paths', 'path_language', array(
    'specific_path',
    'language',
  ));
  return t('Added indices to custom_breadcrumbs_paths database table to improve performance.');
}