function xmlsitemap_term_update_2 in XML sitemap 5.2
Implementation of hook_update_N().
Drop the pid column now that we know how to join on the src index of the url_alias table.
File
- xmlsitemap_term/
xmlsitemap_term.install, line 69 - Install file for XML sitemap term
Code
function xmlsitemap_term_update_2() {
return array(
update_sql("ALTER TABLE {xmlsitemap_term} DROP pid"),
);
}