function toolbar_schema

Implements hook_schema().

File

drupal/core/modules/toolbar/toolbar.install, line 11
Install, update and uninstall functions for the toolbar module.

Code

function toolbar_schema() {
  $schema['cache_toolbar'] = drupal_get_schema_unprocessed('system', 'cache');
  $schema['cache_toolbar']['description'] = 'Cache table for the Toolbar module to store per-user hashes of rendered toolbar subtrees.';
  return $schema;
}