function cache_test_schema

Implements hook_schema().

File

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

Code

function cache_test_schema() {
  $schema['cache_test'] = drupal_get_schema_unprocessed('system', 'cache');
  $schema['cache_test']['description'] = 'Cache table for testing the cache system.';
  return $schema;
}