summaryrefslogtreecommitdiff
path: root/modules/field/field.install
diff options
context:
space:
mode:
authorDavid Rothstein <drothstein@gmail.com>2014-11-05 01:31:30 -0500
committerDavid Rothstein <drothstein@gmail.com>2014-11-05 01:31:30 -0500
commit35e7cb17865a0d524b500c9318197bcf89f2ae60 (patch)
treef9e7a15dd26281025a1982e9a9bec858f1bc9771 /modules/field/field.install
parent2e906b8d706461f2a65b05fbe8505ccdff562c13 (diff)
downloadbrdo-35e7cb17865a0d524b500c9318197bcf89f2ae60.tar.gz
brdo-35e7cb17865a0d524b500c9318197bcf89f2ae60.tar.bz2
Issue #892344 by amitgoyal, tstoeckler, hussainweb, pcambra, LaurentAjdnik: Fixed Wrong schema description for {cache_field}.
Diffstat (limited to 'modules/field/field.install')
-rw-r--r--modules/field/field.install1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/field/field.install b/modules/field/field.install
index c5c5005d7..f6948e3bf 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;
}