You are here

function workflow_fields_uninstall in Workflow Fields 5

Same name and namespace in other branches
  1. 6 workflow_fields.install \workflow_fields_uninstall()

File

./workflow_fields.install, line 70

Code

function workflow_fields_uninstall() {
  switch ($GLOBALS['db_type']) {
    case 'mysql':
    case 'mysqli':
      db_query('DROP TABLE {workflow_fields}');
      break;
    case 'pgsql':
      drupal_set_message(t('PGSQL is currently not supported by workflow_fields.'), 'error');
      break;
  }

  // Note: Variables (if any) should removed here via variable_del().
}