You are here

function _taxonomy_edge_install in Taxonomy Edge 7.2

1 call to _taxonomy_edge_install()
taxonomy_edge_install in ./taxonomy_edge.install
Implements hook_install().

File

./taxonomy_edge.install, line 160
Installation file for Taxonomy Edge

Code

function _taxonomy_edge_install() {
  db_add_index('node', 'idx_taxonomy_edge', array(
    'sticky',
    'created',
    'nid',
  ));
  db_add_index('taxonomy_index', 'idx_taxonomy_edge', array(
    'sticky',
    'created',
    'nid',
  ));
}