You are here

function rules_forms_update_6001 in Rules 6

Update the module's weight to 20.

File

rules_forms/rules_forms.install, line 21
Rules Forms - Installation file.

Code

function rules_forms_update_6001() {
  $ret = array();
  $ret[] = update_sql("UPDATE {system} SET weight = 20 WHERE name = 'rules_forms'");
  return $ret;
}