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