function drupal_install_schema in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/includes/schema.inc \drupal_install_schema()
Creates all tables defined in a module's hook_schema().
Parameters
string $module: The module for which the tables will be created.
Related topics
1 call to drupal_install_schema()
- ModuleInstaller::install in core/
lib/ Drupal/ Core/ Extension/ ModuleInstaller.php - Installs a given list of modules.
File
- core/
includes/ schema.inc, line 117 - Schema API handling functions.
Code
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);
}
}