You are here

function node_example_uninstall in Examples for Developers 6

Implementation of hook_uninstall().

File

node_example/node_example.install, line 18
Node example module's install and uninstall code.

Code

function node_example_uninstall() {
  drupal_uninstall_schema('node_example');
}