function support_update_6004 in Support Ticketing System 6
Introduce "user_creation" field for configured per-client user creation settings.
File
- ./
support.install, line 461
Code
function support_update_6004() {
$ret = array();
db_add_field($ret, 'support_client', 'user_creation', array(
'type' => 'int',
'size' => 'tiny',
'not null' => TRUE,
'default' => 0,
'description' => 'Optionally configure per-client user creation settings.',
));
return $ret;
}