You are here

function drupal_uninstall_schema in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/includes/schema.inc \drupal_uninstall_schema()

Removes all tables defined in a module's hook_schema().

Parameters

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

Related topics

1 call to drupal_uninstall_schema()
ModuleInstaller::uninstall in core/lib/Drupal/Core/Extension/ModuleInstaller.php
Uninstalls a given list of modules.

File

core/includes/schema.inc, line 132
Schema API handling functions.

Code

function drupal_uninstall_schema($module) {
  $schema = drupal_get_module_schema($module);
  _drupal_schema_initialize($schema, $module, FALSE);
  foreach ($schema as $table) {
    if (db_table_exists($table['name'])) {
      db_drop_table($table['name']);
    }
  }
}