You are here

function workflow_extensions_update_6108 in Workflow Extensions 6

Implementation of hook_update_N(). See comment at workflow_extensions_install().

File

./workflow_extensions.install, line 31
Install and uninstall hooks for Workflow Extensions module.

Code

function workflow_extensions_update_6108() {
  $ret = array();
  $ret[] = update_sql("UPDATE {system} SET weight=2 WHERE name='workflow_extensions'");
  return $ret;
}