function pathauto_update_7 in Pathauto 6.2
Same name and namespace in other branches
- 5.2 pathauto.install \pathauto_update_7()
- 6 pathauto.install \pathauto_update_7()
Remove the url_alias_extra table which wasn't used.
File
- ./
pathauto.install, line 72 - Install, update, and uninstall functions for Pathauto.
Code
function pathauto_update_7() {
$ret = array();
if (db_table_exists('url_alias_extra')) {
db_drop_table($ret, 'url_alias_extra');
}
return $ret;
}