You are here

function commerce_registration_uninstall in Commerce Registration 7.2

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

Implements hook_uninstall().

File

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

Code

function commerce_registration_uninstall() {

  // Drop the order_id field from the registration table.
  db_drop_field("registration", "order_id");
}