function coder_review_schema in Coder 7
Same name and namespace in other branches
- 7.2 coder_review/coder_review.install \coder_review_schema()
Implements hook_schema().
File
- coder_review/
coder_review.install, line 26 - Install, update and uninstall functions for the coder_review module.
Code
function coder_review_schema() {
// Use our own cache table because we can create lots of entries, that slow down and clutter the default cache.
$schema['cache_coder'] = drupal_get_schema_unprocessed('system', 'cache');
$schema['cache_coder']['description'] = "Coder cache table for improving display of result sets that haven't changed";
return $schema;
}