On this page
function drupal_uninstall_schema
drupal_uninstall_schema($module)
Removes all tables defined in a module's hook_schema().
Parameters
string $module: The module for which the tables will be removed.
Related topics
- Schema API
- API to handle database schemas.
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']);
}
}
}
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!includes!schema.inc/function/drupal_uninstall_schema/8.1.x