1 filter.install filter_schema()

Implements hook_schema().

File

core/modules/filter/filter.install, line 10
Install, update, and uninstall functions for the Filter module.

Code

function filter_schema() {
  $schema['cache_filter'] = backdrop_get_schema_unprocessed('system', 'cache');
  $schema['cache_filter']['description'] = 'Cache table for the Filter module to store already filtered pieces of text, identified by text format and hash of the text.';

  return $schema;
}