You are here

function hook_update_6100 in Termcase 6

Changed from using an extra column in the vocabulary table to drupal_set_variable() So we can now safely remove the extra field in the database

File

./termcase.install, line 30
Install and uninstall functions for the Termcase module.

Code

function hook_update_6100() {
  $ret = array();
  db_drop_field($ret, 'vocabulary', 'termcase');
  return $ret;
}