1 admin_bar.install admin_bar_schema()

Implements hook_schema().

File

core/modules/admin_bar/admin_bar.install, line 10
Install, update, and uninstall functions for the admin bar module.

Code

function admin_bar_schema() {
  $schema['cache_admin_bar'] = backdrop_get_schema_unprocessed('system', 'cache');
  $schema['cache_admin_bar']['description'] = 'Cache table for Administration bar to store client-side caching hashes.';
  return $schema;
}