You are here

function privatemsg_attachments_uninstall in Privatemsg 6.2

Implements hook_uninstall().

File

privatemsg_attachments/privatemsg_attachments.install, line 18
Installation hooks for privatemsg_attachments

Code

function privatemsg_attachments_uninstall() {

  // Remove tables.
  drupal_uninstall_schema('privatemsg_attachments');
  variable_del('privatemsg_attachments_upload_dir');
}