You are here

function alchemy_uninstall in Alchemy 6

Same name and namespace in other branches
  1. 7 alchemy.install \alchemy_uninstall()

Implementation of hook_uninstall().

File

./alchemy.install, line 14

Code

function alchemy_uninstall() {
  drupal_uninstall_schema('alchemy');
  drupal_set_message(t('Alchemy has been uninstalled.'));
}