From 35e7cb17865a0d524b500c9318197bcf89f2ae60 Mon Sep 17 00:00:00 2001 From: David Rothstein Date: Wed, 5 Nov 2014 01:31:30 -0500 Subject: [PATCH] Issue #892344 by amitgoyal, tstoeckler, hussainweb, pcambra, LaurentAjdnik: Fixed Wrong schema description for {cache_field}. --- modules/field/field.install | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/field/field.install b/modules/field/field.install index c5c5005d7c2..f6948e3bf75 100644 --- a/modules/field/field.install +++ b/modules/field/field.install @@ -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; }