function system_update_6053 in Drupal 6
Add a {system} index on type and name.
Related topics
File
- 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;
}