You are here

function restclient_schema in RESTClient 7.2

Implements hook_schema().

File

./restclient.install, line 38
Install file for restclient

Code

function restclient_schema() {
  $t = get_t();
  $schema = array();

  // Create a cache table
  $schema['cache_restclient'] = drupal_get_schema_unprocessed('system', 'cache');
  $schema['cache_restclient']['description'] = t('Cache table for rest calls');
  return $schema;
}