function salesforce_schema in Salesforce Suite 7.3
Implements hook_schema().
File
- ./
salesforce.install, line 65 - Install/uninstall tasks for the Salesforce module.
Code
function salesforce_schema() {
$schema = array();
$schema['cache_salesforce_object'] = drupal_get_schema_unprocessed('system', 'cache');
$schema['cache_salesforce_object']['description'] = 'Cache table for detailed information about specific Salesforce objects.';
return $schema;
}