From faf7ebafce3da7a285e24a17c199e01c37d0fafb Mon Sep 17 00:00:00 2001
From: Dries Buytaert <dries@buytaert.net>
Date: Fri, 28 Dec 2007 10:53:27 +0000
Subject: [PATCH] - Patch #203316 by mooffie and douggreen: improved schema
 documentation.

---
 modules/search/search.install | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/search/search.install b/modules/search/search.install
index 8f0531384f35..75a23e83d88f 100644
--- a/modules/search/search.install
+++ b/modules/search/search.install
@@ -114,21 +114,21 @@ function search_schema() {
   );
 
   $schema['search_node_links'] = array(
-    'description' => t('Stores nodes that link to other nodes, used to improve search scores for nodes that are frequently linked to.'),
+    'description' => t('Stores items (like nodes) that link to other nodes, used to improve search scores for nodes that are frequently linked to.'),
     'fields' => array(
       'sid' => array(
         'type' => 'int',
         'unsigned' => TRUE,
         'not null' => TRUE,
         'default' => 0,
-        'description' => t('The {search_dataset}.sid of the searchable item to which the word belongs.'),
+        'description' => t('The {search_dataset}.sid of the searchable item containing the link to the node.'),
       ),
       'type' => array(
         'type' => 'varchar',
         'length' => 16,
         'not null' => TRUE,
         'default' => '',
-        'description' => t('The {search_dataset}.sid of the searchable item to which the word belongs.'),
+        'description' => t('The {search_dataset}.type of the searchable item containing the link to the node.'),
       ),
       'nid' => array(
         'type' => 'int',
-- 
GitLab