function tripal_cv_uninstall

2.x tripal_cv.install tripal_cv_uninstall()
3.x tripal_cv.install tripal_cv_uninstall()
1.x tripal_cv.install tripal_cv_uninstall()

Implementation of hook_uninstall().

Related topics

File

tripal_cv/tripal_cv.install, line 73
Contains functions executed only on install/uninstall of this module

Code

function tripal_cv_uninstall() {

  // drop the tripal_obo_temp table
  if (chado_table_exists('tripal_obo_temp')) {
    $sql = "DROP TABLE {tripal_obo_temp}";
    chado_query($sql);
  }
}