You are here

function notifications_uninstall in Notifications 5

Same name and namespace in other branches
  1. 6.4 notifications.install \notifications_uninstall()
  2. 6 notifications.install \notifications_uninstall()
  3. 6.2 notifications.install \notifications_uninstall()
  4. 6.3 notifications.install \notifications_uninstall()
  5. 7 notifications.install \notifications_uninstall()

Implementation of hook_uninstall().

File

./notifications.install, line 136

Code

function notifications_uninstall() {
  db_query("DROP TABLE {notifications}");
  db_query("DROP TABLE {notifications_fields}");
  db_query("DROP TABLE {notifications_queue}");
  db_query("DROP TABLE {notifications_event}");
  db_query("DROP TABLE {notifications_sent}");
}