function drupal_install_schema

Same name in other branches
  1. 7.x includes/common.inc \drupal_install_schema()
  2. 9 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 119

Code

function drupal_install_schema($module) {
    $schema = drupal_get_module_schema($module);
    _drupal_schema_initialize($schema, $module, FALSE);
    foreach ($schema as $name => $table) {
        \Drupal::database()->schema()
            ->createTable($name, $table);
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.