You are here

function support_update_6006 in Support Ticketing System 6

Add support for nested clients.

File

./support.install, line 486

Code

function support_update_6006() {
  $ret = array();
  db_add_field($ret, 'support_client', 'parent', array(
    'type' => 'int',
    'not null' => TRUE,
    'default' => 0,
    'description' => 'Optionally nest clients within clients.',
  ));
  drupal_flush_all_caches();
  return $ret;
}