system_update_6053

Versions
6 – 7
system_update_6053()

Add a {system} index on type and name.

Related topics

Code

modules/system/system.install, line 2618

<?php
function system_update_6053() {
  $ret = array();
  db_add_index($ret, 'system', 'type_name', array(array('type', 12), 'name'));
  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.