summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2001-07-26 02:55:29 +0200
committerjustdave%syndicomm.com <>2001-07-26 02:55:29 +0200
commit60dd1f7e93db8ea46567c003124bd82f9993dcba (patch)
tree49f36ae5d6475b3406c2500eb4eff2105a0533d9 /checksetup.pl
parent83e0c3c2b02f091b2c19117252d93cf9acba7299 (diff)
downloadbugzilla-60dd1f7e93db8ea46567c003124bd82f9993dcba.tar.gz
bugzilla-60dd1f7e93db8ea46567c003124bd82f9993dcba.tar.xz
Fix for bug 90933: inconsistant field types for profiles.disabledtext
Patch by Jake Steenhagen <jake@acutex.net> r= justdave@syndicomm.com
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl6
1 files changed, 5 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl
index e205d4c06..d5ece7997 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -1012,7 +1012,7 @@ $table{profiles} =
cryptpassword varchar(34),
realname varchar(255),
groupset bigint not null,
- disabledtext mediumtext,
+ disabledtext mediumtext not null,
mybugslink tinyint not null default 1,
blessgroupset bigint not null default 0,
emailflags mediumtext,
@@ -2446,6 +2446,10 @@ if (GetFieldDef('bugs_activity', 'oldvalue')) {
DropField("bugs_activity", "newvalue");
}
+# 2001-07-24 jake@acutex.net - disabledtext was being handled inconsitantly
+# http://bugzilla.mozilla.org/show_bug.cgi?id=90933
+ChangeFieldType("profiles", "disabledtext", "mediumtext not null");
+
# If you had to change the --TABLE-- definition in any way, then add your
# differential change code *** A B O V E *** this comment.
#