You are here

function workflow_fields_update_6004 in Workflow Fields 6

Same name and namespace in other branches
  1. 7 workflow_fields.install \workflow_fields_update_6004()

File

./workflow_fields.install, line 69

Code

function workflow_fields_update_6004() {
  $ret = array();

  // Set the weight to be greater than fieldgroup's weight.
  db_query("UPDATE {system} SET weight = 10 WHERE name = 'workflow_fields'");
  return $ret;
}