You are here

function fieldgroup_update_6001 in Content Construction Kit (CCK) 6.3

Same name and namespace in other branches
  1. 6.2 modules/fieldgroup/fieldgroup.install \fieldgroup_update_6001()

File

modules/fieldgroup/fieldgroup.install, line 216
Implementation of hook_install().

Code

function fieldgroup_update_6001() {
  if ($abort = content_check_update('fieldgroup')) {
    return $abort;
  }
  $ret = array();
  $ret[] = update_sql("UPDATE {system} SET weight = 9 WHERE name = 'fieldgroup'");
  return $ret;
}