function drupal_uninstall_schema

7.x common.inc drupal_uninstall_schema($module)
6.x common.inc drupal_uninstall_schema($module)

Remove all tables that a module defines in its hook_schema().

Note: This function does not pass the module's schema through hook_schema_alter(). The module's tables will be created exactly as the module defines them.

Parameters

$module: The module for which the tables will be removed.

Return value

An array of arrays with the following key/value pairs:

  • success: a boolean indicating whether the query succeeded.
  • query: the SQL query(s) executed, passed through check_plain().

Related topics

16 calls to drupal_uninstall_schema()
aggregator_uninstall in drupal-6.x/modules/aggregator/aggregator.install
Implementation of hook_uninstall().
blogapi_uninstall in drupal-6.x/modules/blogapi/blogapi.install
Implementation of hook_uninstall().
book_uninstall in drupal-6.x/modules/book/book.install
Implementation of hook_uninstall().
contact_uninstall in drupal-6.x/modules/contact/contact.install
Implementation of hook_uninstall().
dblog_uninstall in drupal-6.x/modules/dblog/dblog.install
Implementation of hook_uninstall().

... See full list

File

drupal-6.x/includes/common.inc, line 3395
Common functions that many Drupal modules will need to reference.

Code

function drupal_uninstall_schema($module) {
  $schema = drupal_get_schema_unprocessed($module);
  _drupal_initialize_schema($module, $schema);

  $ret = array();
  foreach ($schema as $table) {
    db_drop_table($ret, $table['name']);
  }
  return $ret;
}