You are here

function notifications_custom_uninstall in Notifications 6.4

Same name and namespace in other branches
  1. 6 notifications_custom/notifications_custom.install \notifications_custom_uninstall()

Implementation of hook_uninstall().

File

notifications_custom/notifications_custom.install, line 28
Install, update and uninstall functions for the notifications_custom module.

Code

function notifications_custom_uninstall() {

  // Remove tables
  drupal_uninstall_schema('notifications_custom');
}