Skip to content
Snippets Groups Projects
Commit faf7ebaf authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #203316 by mooffie and douggreen: improved schema documentation.

parent fd85066b
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -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',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment