| Versionen | |
|---|---|
| drupal6 – drupal7 | drupal_set_installed_schema_version($module, $version) |
Update the installed version information for a module.
$module A module name.
$version The new schema version.
includes/
<?php
function drupal_set_installed_schema_version($module, $version) {
db_query("UPDATE {system} SET schema_version = %d WHERE name = '%s'", $version, $module);
}
?>
Kommentare
Kommentar hinzufügen