You are here

function spam_uninstall in Spam 6

Same name and namespace in other branches
  1. 5.3 spam.install \spam_uninstall()
  2. 5 spam.install \spam_uninstall()

File

./spam.install, line 119
Defines Spam module schema.

Code

function spam_uninstall() {

  // Remove tables.
  drupal_uninstall_schema('spam');
  drupal_set_message(t('All spam module tables have been deleted.'));
}