function uc_coupon_purchase_schema in Ubercart Discount Coupons 6
Same name and namespace in other branches
- 7.3 uc_coupon_purchase/uc_coupon_purchase.install \uc_coupon_purchase_schema()
- 7.2 uc_coupon_purchase/uc_coupon_purchase.install \uc_coupon_purchase_schema()
File
- uc_coupon_purchase/
uc_coupon_purchase.install, line 3
Code
function uc_coupon_purchase_schema() {
$schema = array();
$schema['uc_coupon_purchase'] = array(
'description' => t('Ubercart Purchased Coupons'),
'fields' => array(
'pfid' => array(
'description' => t('The product feature id.'),
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'nid' => array(
'description' => t('The identifier of the node that has a feature.'),
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'model' => array(
'description' => t('The SKU of the product that has a feature.'),
'type' => 'varchar',
'length' => 30,
'not null' => TRUE,
'default' => '',
),
'base_cid' => array(
'description' => t('The base coupon ID to use when purchasing this feature.'),
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
),
'indexes' => array(
'nid' => array(
'nid',
),
'model' => array(
'model',
),
),
'primary key' => array(
'pfid',
),
);
$schema['uc_coupon_purchase_users'] = array(
'description' => t('Ubercart Purchased Coupons Per Purchaser'),
'fields' => array(
'cpuid' => array(
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'uid' => array(
'description' => t('The user id.'),
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'cid' => array(
'description' => t('The coupon id.'),
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
),
'primary key' => array(
'cpuid',
),
);
return $schema;
}