You are here

function libraries_schema in Libraries API 7.2

Same name and namespace in other branches
  1. 7.3 libraries.install \libraries_schema()

Implements hook_schema().

1 call to libraries_schema()
libraries_update_7200 in ./libraries.install
Create the 'cache_libraries' table.

File

./libraries.install, line 11
Install, uninstall, and update functions for libraries.module.

Code

function libraries_schema() {
  $schema['cache_libraries'] = drupal_get_schema_unprocessed('system', 'cache');
  $schema['cache_libraries']['description'] = 'Cache table to store library information.';
  return $schema;
}