1 drupal.inc | drupal_set_installed_schema_version($module, $version) |
Update the installed version information for a module.
Deprecated
since 1.0.0
See also
backdrop_set_installed_schema_version()
Related topics
File
- core/
includes/ drupal.inc, line 1890 - Contains constants and function wrappers for Drupal 7.x compatibility.
Code
function drupal_set_installed_schema_version($module, $version) {
watchdog_deprecated_function('drupal', __FUNCTION__);
backdrop_set_installed_schema_version($module, $version);
}