function tabledrag_example_uninstall in Examples for Developers 7
Implements hook_uninstall().
This removes the example data when the module is uninstalled.
Related topics
File
- tabledrag_example/
tabledrag_example.install, line 149 - Install and uninstall functions for the tabledrag example module.
Code
function tabledrag_example_uninstall() {
db_drop_table('tabledrag_example');
}