function uc_usps_schema in Ubercart 6.2
Same name and namespace in other branches
- 8.4 shipping/uc_usps/uc_usps.install \uc_usps_schema()
- 7.3 shipping/uc_usps/uc_usps.install \uc_usps_schema()
Implements hook_schema().
File
- shipping/
uc_usps/ uc_usps.install, line 30 - Install hooks for uc_usps.module.
Code
function uc_usps_schema() {
$schema = array();
$schema['uc_usps_products'] = array(
'description' => 'Stores product information for USPS shipping quotes.',
'fields' => array(
'vid' => array(
'description' => 'The {uc_products}.vid.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'nid' => array(
'description' => 'The {uc_products}.nid.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'container' => array(
'description' => 'The package type in which the product will be shipped.',
'type' => 'varchar',
'length' => '255',
'not null' => TRUE,
'default' => '',
),
),
'primary key' => array(
'vid',
),
);
return $schema;
}