function system_update_6053

6.x system.install system_update_6053()

Add a {system} index on type and name.

Related topics

File

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

Code

function system_update_6053() {
  $ret = array();
  db_add_index($ret, 'system', 'type_name', array(array('type', 12), 'name'));
  return $ret;
}