function support_update_6009 in Support Ticketing System 6
Make sure the 'active' field is removed from new installs.
File
- ./
support.install, line 527
Code
function support_update_6009() {
$ret = array();
if (db_column_exists('support_assigned', 'active')) {
$ret = support_update_6008();
}
return $ret;
}