You are here

function nodeorder_uninstall in Node Order 8

Same name and namespace in other branches
  1. 6 nodeorder.install \nodeorder_uninstall()
  2. 7 nodeorder.install \nodeorder_uninstall()

Implements hook_uninstall().

Drops field 'weight' from core table 'taxonomy_index'.

File

./nodeorder.install, line 43
Nodeorder install file.

Code

function nodeorder_uninstall() {
  db_drop_index('taxonomy_index', 'weight');
  db_drop_field('taxonomy_index', 'weight');
}