You are here

function salesforce_update_7300 in Salesforce Suite 7.3

Create the cache bin for Salesforce objects.

File

./salesforce.install, line 75
Install/uninstall tasks for the Salesforce module.

Code

function salesforce_update_7300() {
  if (!db_table_exists('cache_salesforce_object')) {
    $schema_name = 'cache_salesforce_object';
    $schema[$schema_name] = drupal_get_schema_unprocessed('system', 'cache');
    $schema[$schema_name]['description'] = 'Cache table for detailed information about specific Salesforce objects.';
    db_create_table($schema_name, $schema[$schema_name]);
  }
}