drupal_install_schema

drupal_install_schema($module)

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

Parameters

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

Related topics

Schema API
API to handle database schemas.

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);
  }
}
doc_Drupal
2016-10-29 09:03:16
Comments
Leave a Comment

Please login to continue.