You are here

function uc_recurring_update_6008 in UC Recurring Payments and Subscriptions 6.2

Same name and namespace in other branches
  1. 7.2 uc_recurring.install \uc_recurring_update_6008()

Update the extension table, decrement the rebill_attempt value to start from 0 instead of 1.

File

./uc_recurring.install, line 459
Installs the Recurring Fee module.

Code

function uc_recurring_update_6008() {
  $ret = array();
  $ret[] = update_sql("UPDATE {uc_recurring_extensions} set rebill_attempt=rebill_attempt-1");
  return $ret;
}