1 field.install field_schema()

Implements hook_schema().

File

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

Code

function field_schema() {
  $schema['cache_field'] = backdrop_get_schema_unprocessed('system', 'cache');
  $schema['cache_field']['description'] = 'Cache table for the Field module to store already built field information.';

  return $schema;
}