system_update_6003
- Versions
- 6
system_update_6003()
Add index on comments status column.
Related topics
Code
modules/system/system.install, line 1188
<?php
function system_update_6003() {
$ret = array();
db_add_index($ret, 'comments', 'status', array('status'));
return $ret;
}
?>Login or register to post comments 