You are here

function role_export_uninstall in Role Export 6

Same name and namespace in other branches
  1. 7 role_export.install \role_export_uninstall()

Implements hook_uninstall().

File

./role_export.install, line 49
Install, Uninstall, Schema and Update functions for role_export

Code

function role_export_uninstall() {
  $ret = array();
  db_drop_field($ret, 'role', 'machine_name');
}