1 tabledrag_example.install | tabledrag_example_uninstall() |
Implements hook_uninstall().
This removes the example data when the module is uninstalled.
Related topics
File
- modules/
examples/ 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');
}