You are here

function support_update_6002 in Support Ticketing System 6

Introduce "thread_subject" field for configured per-client thread settings.

File

./support.install, line 435

Code

function support_update_6002() {
  $ret = array();
  db_add_field($ret, 'support_client', 'thread_subject', array(
    'type' => 'int',
    'size' => 'tiny',
    'not null' => TRUE,
    'default' => 0,
    'description' => 'Optionally configure per-client subject threading settings.',
  ));
  return $ret;
}