From 17fc03c80dbd04261a1ba1c4cd343ae1997657ea Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" <> Date: Wed, 19 Jan 2000 06:41:24 +0000 Subject: Added a way to disable a user. --- checksetup.pl | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'checksetup.pl') diff --git a/checksetup.pl b/checksetup.pl index 0028d7cce..69e31919a 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -625,6 +625,7 @@ $table{profiles} = realname varchar(255), groupset bigint not null, emailnotification enum("ExcludeSelfChanges", "CConly", "All") not null default "ExcludeSelfChanges", + disabledtext mediumtext not null, index(login_name)'; @@ -1024,7 +1025,13 @@ if (!GetFieldDef('bugs', 'keywords')) { push(@list, $k); } } - + + +# 2000-01-18 Added a "disabledtext" field to the profiles table. If not +# empty, then this account has been disabled, and this field is to contain +# text describing why. + +AddField('profiles', 'disabledtext', 'mediumtext not null'); -- cgit v1.2.3-24-g4f1b