You are here

function xmlsitemap_node_update_5 in XML sitemap 5.2

Implementation of hook_update_N().

File

xmlsitemap_node/xmlsitemap_node.install, line 97
Install file for XML sitemap node

Code

function xmlsitemap_node_update_5() {
  $result = @update_sql("ALTER TABLE {xmlsitemap_node} DROP pid");
  if ($result['success']) {
    $ret[] = $result;
  }
  return $ret;
}