function system_update_6003 in Drupal 6
Add index on comments status column.
Related topics
File
- modules/
system/ system.install, line 1256
Code
function system_update_6003() {
$ret = array();
db_add_index($ret, 'comments', 'status', array(
'status',
));
return $ret;
}