You are here

function fieldgroup_update_6008 in Content Construction Kit (CCK) 6.3

allow for nesting of fieldgroups

File

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

Code

function fieldgroup_update_6008() {
  if ($abort = content_check_update('fieldgroup')) {
    return $abort;
  }
  $ret = array();
  db_add_field($ret, 'content_group', 'parent', array(
    'type' => 'varchar',
    'length' => 32,
    'not null' => FALSE,
    'default' => '',
  ));
  return $ret;
}