You are here

function xmlsitempa_update_6152 in XML sitemap 6

Implementation of hook_update_N(). Add `loc` index.

File

./xmlsitemap.install, line 569
Installation file for XML sitemap.

Code

function xmlsitempa_update_6152() {
  $ret = array();
  db_add_index($ret, 'xmlsitemap', 'loc', array(
    'loc',
  ));
  return $ret;
}