function drupal_install_schema in Drupal 7
Same name and namespace in other branches
- 8 core/includes/schema.inc \drupal_install_schema()
- 6 includes/common.inc \drupal_install_schema()
- 9 core/includes/schema.inc \drupal_install_schema()
Creates all tables defined in a module's 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 created.
Related topics
2 calls to drupal_install_schema()
- module_enable in includes/
module.inc - Enables or installs a given list of modules.
- system_install in modules/
system/ system.install - Implements hook_install().
File
- includes/
common.inc, line 7221 - Common functions that many Drupal modules will need to reference.
Code
function drupal_install_schema($module) {
$schema = drupal_get_schema_unprocessed($module);
_drupal_schema_initialize($schema, $module, FALSE);
foreach ($schema as $name => $table) {
db_create_table($name, $table);
}
}