function taxonomy_update_7007

Add index on {taxonomy_term_data}.name column to speed up taxonomy_get_term_by_name().

Archivo

drupal-7.x/modules/taxonomy/taxonomy.install, line 833
Install, update and uninstall functions for the taxonomy module.

Código

function taxonomy_update_7007() {
  db_add_index('taxonomy_term_data', 'name', array('name'));
}