function system_update_6003

6.x system.install system_update_6003()

Add index on comments status column.

Related topics

File

drupal-6.x/modules/system/system.install, line 1256

Code

function system_update_6003() {
  $ret = array();
  db_add_index($ret, 'comments', 'status', array('status'));
  return $ret;
}