function uc_recurring_schema in UC Recurring Payments and Subscriptions 6
Same name and namespace in other branches
- 6.2 uc_recurring.install \uc_recurring_schema()
- 7.2 uc_recurring.install \uc_recurring_schema()
@file Installs the Recurring Fee module.
File
- ./
uc_recurring.install, line 8 - Installs the Recurring Fee module.
Code
function uc_recurring_schema() {
$schema = array();
$schema['uc_recurring_products'] = array(
'description' => t('Data for recurring fees attached to products.'),
'fields' => array(
'pfid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'model' => array(
'description' => t('The SKU the recurring fee applies to.'),
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '0',
),
'fee_amount' => array(
'description' => t('The amount of the recurring fee.'),
'type' => 'numeric',
'precision' => 15,
'scale' => 3,
'not null' => TRUE,
'default' => 0.0,
),
'initial_charge' => array(
'description' => t('The amount of time between checkout and the first charge.'),
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '0',
),
'regular_interval' => array(
'description' => t('The amount of time between charges.'),
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '0',
),
'number_intervals' => array(
'description' => t('The number of times the fee should be charged.'),
'type' => 'int',
'size' => 'small',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 1,
),
),
'primary key' => array(
'pfid',
),
);
$schema['uc_recurring_users'] = array(
'description' => t('Data for recurring fees attached to users/orders scheduled to be charged.'),
'fields' => array(
'rfid' => array(
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'uid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'fee_handler' => array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'next_charge' => array(
'description' => t('The timestamp when the next charge should be performed.'),
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'fee_amount' => array(
'description' => t('The amount of the recurring fee.'),
'type' => 'numeric',
'precision' => 15,
'scale' => 3,
'not null' => TRUE,
'default' => 0.0,
),
'regular_interval' => array(
'description' => t('The amount of time between charges.'),
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '0',
),
'remaining_intervals' => array(
'description' => t('The remaining number of times the fee should be charged.'),
'type' => 'int',
'size' => 'small',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 1,
),
'charged_intervals' => array(
'description' => t('Counter for how many times the fee has been charged.'),
'type' => 'int',
'size' => 'small',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 1,
),
'order_id' => array(
'description' => t('The order ID.'),
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'data' => array(
'description' => t('Serialized array of extra data.'),
'type' => 'text',
),
'created' => array(
'description' => t('Timestamp for when the fee was first attached to the user.'),
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
),
'primary key' => array(
'rfid',
),
);
return $schema;
}