function token_schema in Token 7
Implements hook_schema().
File
- ./
token.install, line 39 - Install, update and uninstall functions for the token module.
Code
function token_schema() {
$schema['cache_token'] = drupal_get_schema_unprocessed('system', 'cache');
$schema['cache_token']['description'] = 'Cache table for token information.';
return $schema;
}