You are here

function ext_search_page_uninstall in Extended search page 7

Implements hook_uninstall().

File

./ext_search_page.install, line 42
Install, update and uninstall functions for the Extended search page module.

Code

function ext_search_page_uninstall() {
  $ret = array();
  $new_schema = array();
  ext_search_page_schema_alter($new_schema);
  foreach ($new_schema as $table => $info) {
    foreach ($info['fields'] as $field => $spec) {
      db_drop_field($table, $field);
    }
  }
}