summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authorterry%mozilla.org <>2000-01-19 07:41:24 +0100
committerterry%mozilla.org <>2000-01-19 07:41:24 +0100
commit17fc03c80dbd04261a1ba1c4cd343ae1997657ea (patch)
tree73a0ffe2a35f964fe152b27eac06f348fb47c1a6 /checksetup.pl
parent608e17c03974ecd0c54b01dadad994507dc2b23d (diff)
downloadbugzilla-17fc03c80dbd04261a1ba1c4cd343ae1997657ea.tar.gz
bugzilla-17fc03c80dbd04261a1ba1c4cd343ae1997657ea.tar.xz
Added a way to disable a user.
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl9
1 files changed, 8 insertions, 1 deletions
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');