function notifications_uninstall in Notifications 5
Same name and namespace in other branches
- 6.4 notifications.install \notifications_uninstall()
- 6 notifications.install \notifications_uninstall()
- 6.2 notifications.install \notifications_uninstall()
- 6.3 notifications.install \notifications_uninstall()
- 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}");
}