You are here

function pathauto_update_7 in Pathauto 6

Same name and namespace in other branches
  1. 5.2 pathauto.install \pathauto_update_7()
  2. 6.2 pathauto.install \pathauto_update_7()

Remove the url_alias_extra table which wasn't used.

File

./pathauto.install, line 103
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;
}