]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fix for bug 90933: inconsistant field types for profiles.disabledtext
authorjustdave%syndicomm.com <>
Thu, 26 Jul 2001 00:55:29 +0000 (00:55 +0000)
committerjustdave%syndicomm.com <>
Thu, 26 Jul 2001 00:55:29 +0000 (00:55 +0000)
Patch by Jake Steenhagen <jake@acutex.net>
r= justdave@syndicomm.com

checksetup.pl

index e205d4c06ef88e275cf6794ca2b79ddafe825750..d5ece7997ddf67849ec4cc853a444a4d99b13ebe 100755 (executable)
@@ -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.
 #