You are here

function taxonomy_term_depth_uninstall in Taxonomy Term Depth 7

Same name and namespace in other branches
  1. 8 taxonomy_term_depth.install \taxonomy_term_depth_uninstall()

Implements hook_uninstall()

File

./taxonomy_term_depth.install, line 52

Code

function taxonomy_term_depth_uninstall() {
  db_drop_field('taxonomy_term_data', 'depth');

  // Remove depth index mapped to tid.
  db_drop_index('taxonomy_term_data', 'depth');
}