Issue #892344 by amitgoyal, tstoeckler, hussainweb, pcambra, LaurentAjdnik: Fixed Wrong schema description for {cache_field}.

merge-requests/26/head
David Rothstein 2014-11-05 01:31:30 -05:00
parent 2e906b8d70
commit 35e7cb1786
1 changed files with 1 additions and 0 deletions

View File

@ -162,6 +162,7 @@ function field_schema() {
),
);
$schema['cache_field'] = drupal_get_schema_unprocessed('system', 'cache');
$schema['cache_field']['description'] = 'Cache table for the Field module to store already built field information.';
return $schema;
}