You are here

function message_notify_uninstall in Message Notify 7.2

Implements hook_uninstall().

File

./message_notify.install, line 11
Install, update, and uninstall functions for the message notify module.

Code

function message_notify_uninstall() {
  $instance = field_info_instance('message_type', 'message_text_subject', 'message_type_email');
  field_delete_instance($instance);
  field_delete_field('message_text_subject');
}