You are here

function uc_recurring_product_update_6000 in UC Recurring Payments and Subscriptions 6.2

Same name and namespace in other branches
  1. 7.2 modules/uc_recurring_product/uc_recurring_product.install \uc_recurring_product_update_6000()

Remove nid field.

File

modules/uc_recurring_product/uc_recurring_product.install, line 87
Installs the Recurring Products module.

Code

function uc_recurring_product_update_6000() {
  $ret = array();
  db_drop_field($ret, 'uc_recurring_product', 'nid');
  return $ret;
}