function comment_update_6004

6.x comment.install comment_update_6004()

Add index to to node_comment_statistics on comment_count

Related topics

File

drupal-6.x/modules/comment/comment.install, line 77

Code

function comment_update_6004() {
  $ret = array();
  db_add_index($ret, 'node_comment_statistics', 'comment_count', array('comment_count'));
  return $ret;
}