comment_update_6003

Versions
6
comment_update_6003()

Add index to parent ID field.

Code

modules/comment/comment.install, line 63

<?php
function comment_update_6003() {
  $ret = array();
  db_add_index($ret, 'comments', 'pid', array('pid'));
  return $ret;
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.