diff --git a/core/includes/schema.inc b/core/includes/schema.inc index 501b3e2..b74c270 100644 --- a/core/includes/schema.inc +++ b/core/includes/schema.inc @@ -113,10 +113,6 @@ function drupal_set_installed_schema_version($module, $version) { /** * 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. - * * @param string $module * The module for which the tables will be created. */ @@ -132,10 +128,6 @@ function drupal_install_schema($module) { /** * Removes 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. - * * @param string $module * The module for which the tables will be removed. *