You are here

function rules_update_6005 in Rules 6

Update the modules weight to 20.

File

rules/rules.install, line 170
Rules - Installation file.

Code

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