function comment_update_6003

6.x comment.install comment_update_6003()

Add index to parent ID field.

File

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

Code

function comment_update_6003() {
  $ret = array();
  db_add_index($ret, 'comments', 'pid', array('pid'));
  return $ret;
}