function uc_recurring_update_6008 in UC Recurring Payments and Subscriptions 7.2
Same name and namespace in other branches
- 6.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 486 - Installs the Recurring Fee module.
Code
function uc_recurring_update_6008() {
db_query('UPDATE {uc_recurring_extensions} SET rebill_attempt = rebill_attempt - 1');
}