function workflow_fields_update_6004 in Workflow Fields 7
Same name and namespace in other branches
- 6 workflow_fields.install \workflow_fields_update_6004()
File
- ./
workflow_fields.install, line 70 - Install, update, and uninstall functions for the workflow_fields module.
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;
}