summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
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');