You are here

function coffee_schema in Coffee 7.2

Implements hook_schema().

File

./coffee.install, line 10
Provides installation details for Coffee.

Code

function coffee_schema() {
  $schema['cache_coffee'] = drupal_get_schema_unprocessed('system', 'cache');
  $schema['cache_coffee']['description'] = 'Cache table for Coffee to store pre-built command lists.';
  return $schema;
}