1 update.inc update_already_performed($module, $number)

Determines if a module update has already been performed.

Parameters

$module: The name of the module.

$number: The number of the update within that module.

Return value

TRUE if the database schema indicates that the update has already been: performed; FALSE otherwise.

File

core/includes/update.inc, line 1021
Backdrop database update API.

Code

function update_already_performed($module, $number) {
  return $number <= backdrop_get_installed_schema_version($module);
}