system_update_6049

Versions
6 – 7
system_update_6049()

Replace src index on the {url_alias} table with src, language.

Related topics

Code

modules/system/system.install, line 2557

<?php
function system_update_6049() {
  $ret = array();
  db_drop_index($ret, 'url_alias', 'src');
  db_add_index($ret, 'url_alias', 'src_language', array('src', 'language'));
  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.