drupal_install_schema($module)
Creates all tables defined in a module's hook_schema().
string $module: The module for which the tables will be created.
function drupal_install_schema($module) { $schema = drupal_get_module_schema($module); _drupal_schema_initialize($schema, $module, FALSE); foreach ($schema as $name => $table) { db_create_table($name, $table); } }
© 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_install_schema/8.1.x