You are here

function commerce_registration_uninstall in Commerce Registration 7.3

Same name and namespace in other branches
  1. 7.2 commerce_registration.install \commerce_registration_uninstall()

Implements hook_uninstall().

File

./commerce_registration.install, line 85
Commerce Registration install file.

Code

function commerce_registration_uninstall() {

  // Drop the lineitem_id field from the registration table.
  db_drop_field('registration', 'lineitem_id');
  db_drop_field('commerce_line_item', 'registrations');
}