You are here

function node_convert_uninstall in Node Convert 6

Same name and namespace in other branches
  1. 7 node_convert.install \node_convert_uninstall()

File

./node_convert.install, line 28
The node_convert install file.

Code

function node_convert_uninstall() {

  // Drop my tables.
  drupal_uninstall_schema('node_convert');
  db_query("DELETE FROM {actions} WHERE callback = 'node_convert_convert_action'");
}