<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
<META NAME="GENERATOR" CONTENT="GtkHTML/3.28.1">
</HEAD>
<BODY>
I'd like to understand the DB relationship. would we have the ERM or DB schema in some place on twiki? I took a glace there but with no successful.<BR>
<BR>
at this point I want to clean up old users from my DB (I have 265 records) in my Users table and I am not sure how can I filter users disabled as into table there is no <BR>
flag field for this, at least I didn't find this.<BR>
<BR>
and I really would love to understand where is going Disabled value, for this case below I copied it from rt3/share/html/Admin/Users/Modify.html so I can't see this field in Users table.<BR>
<BR>
<B><I>can my DB schema is no updated?</I></B><BR>
<BR>
<BR>
if ( defined $id && $id eq 'new') {<BR>
( $val, $msg ) = $UserObj->Create(<BR>
Name => $Name,<BR>
EmailAddress => $ARGS{'EmailAddress'},<BR>
Name => $ARGS{'Name'},<BR>
Comments => $ARGS{'Comments'},<BR>
Signature => $ARGS{'Signature'},<BR>
EmailAddress => $ARGS{'EmailAddress'},<BR>
FreeformContactInfo => $ARGS{'FreeformContactInfo'},<BR>
Organization => $ARGS{'Organization'},<BR>
RealName => $ARGS{'RealName'},<BR>
NickName => $ARGS{'NickName'},<BR>
Lang => $ARGS{'Lang'},<BR>
EmailEncoding => $ARGS{'EmailEncoding'},<BR>
WebEncoding => $ARGS{'WebEncoding'},<BR>
ExternalContactInfoId => $ARGS{'ExternalContactInfoId'},<BR>
ContactInfoSystem => $ARGS{'ContactInfoSystem'},<BR>
Gecos => $ARGS{'Gecos'},<BR>
ExternalAuthId => $ARGS{'ExternalAuthId'},<BR>
AuthSystem => $ARGS{'AuthSystem'},<BR>
HomePhone => $ARGS{'HomePhone'},<BR>
WorkPhone => $ARGS{'WorkPhone'},<BR>
MobilePhone => $ARGS{'MobilePhone'},<BR>
PagerPhone => $ARGS{'PagerPhone'},<BR>
Address1 => $ARGS{'Address1'},<BR>
Address2 => $ARGS{'Address2'},<BR>
City => $ARGS{'City'},<BR>
State => $ARGS{'State'},<BR>
Zip => $ARGS{'Zip'},<BR>
Country => $ARGS{'Country'},<BR>
Privileged => $ARGS{'Privileged'},<BR>
Disabled => ($ARGS{'Enabled'} ? 0 : 1)<BR>
);<BR>
<BR>
<BR>
I really appreciate for your help.<BR>
<BR>
Thanks,<BR>
Eduardo
</BODY>
</HTML>