function uc_recurring_update_6010 in UC Recurring Payments and Subscriptions 6.2
Same name and namespace in other branches
- 7.2 uc_recurring.install \uc_recurring_update_6010()
Mistake in last update to set size of order_product_field.
File
- ./
uc_recurring.install, line 484 - Installs the Recurring Fee module.
Code
function uc_recurring_update_6010() {
$ret = array();
db_change_field($ret, 'uc_recurring_users', 'order_product_id', 'order_product_id', array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => FALSE,
'default' => 0,
));
return $ret;
}