function uc_cybersource_schema in Ubercart 6.2
Same name and namespace in other branches
- 7.3 payment/uc_cybersource/uc_cybersource.install \uc_cybersource_schema()
Implements hook_schema().
File
- payment/
uc_cybersource/ uc_cybersource.install, line 85 - Handles installing, uninstalling, and updating CyberSource settings.
Code
function uc_cybersource_schema() {
$schema['uc_payment_cybersource_hop_post'] = array(
'fields' => array(
'order_id' => array(
'description' => 'The order ID as provided by the store.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'request_id' => array(
'description' => 'Unique id assigned by CyberSource that identifies payment request.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'request_token' => array(
'description' => 'Verification token associated with the request ID.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'reconciliation_id' => array(
'description' => 'Reference number generated by CyberSource that you use to reconcile your CyberSource reports with your processor reports.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'gross' => array(
'description' => 'The approved payment amount from CyberSource.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'decision' => array(
'description' => 'CyberSource decision for payment request.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'reason_code' => array(
'description' => 'A code for decision.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'payer_email' => array(
'description' => 'The e-mail address of the buyer.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'received' => array(
'description' => 'The IPN receipt timestamp.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
),
);
return $schema;
}