You are here

function serial_uninstall in Serial Field 6

Implementation of hook_uninstall().

File

./serial.install, line 20
Install, update and uninstall functions for the Serial module.

Code

function serial_uninstall() {
  drupal_load('module', 'content');
  content_notify('uninstall', 'serial');

  // TODO: Remove orphan serial fields (can always be added again)
  drupal_uninstall_schema('serial');
}