function uc_recurring_update_6007 in UC Recurring Payments and Subscriptions 6.2
Same name and namespace in other branches
- 7.2 uc_recurring.install \uc_recurring_update_6007()
Add status field to recurring users table.
File
- ./
uc_recurring.install, line 448 - Installs the Recurring Fee module.
Code
function uc_recurring_update_6007() {
$ret = array();
db_add_field($ret, 'uc_recurring_users', 'status', array(
'description' => 'The status of the recurring fee, e.g. "active" or "expired"',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
));
return $ret;
}