You are here

function uuid_update_7100 in Universally Unique IDentifier 7

Remove old variables.

File

./uuid.install, line 208
Install, update and uninstall functions for the uuid module.

Code

function uuid_update_7100() {
  $types = array(
    'nodes',
    'users',
    'taxonomy',
    'comments',
  );
  foreach ($types as $type) {
    variable_del('uuid_automatic_for_' . $type);
  }
  return array();
}