summaryrefslogtreecommitdiffstats
path: root/CHANGES
diff options
context:
space:
mode:
authorterry%mozilla.org <>1999-09-16 02:25:26 +0200
committerterry%mozilla.org <>1999-09-16 02:25:26 +0200
commit1008fc9fa512222979ae23e02e7db30c3e04d592 (patch)
tree60737cf5fccb9580fa83e14422bf2cb60d522ace /CHANGES
parent20269fbbc7fe9226f2ed8a4c0470d7c84b795591 (diff)
downloadbugzilla-1008fc9fa512222979ae23e02e7db30c3e04d592.tar.gz
bugzilla-1008fc9fa512222979ae23e02e7db30c3e04d592.tar.xz
Patch by daa@rmi.net (Dave Avery) -- newer alphas of MySQL won't let
use "when" as a column name, so let's change our usage while it's still easy to do so.
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES8
1 files changed, 8 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 527e472d9..2c5f2994f 100644
--- a/CHANGES
+++ b/CHANGES
@@ -10,6 +10,14 @@ query the CVS tree. For example,
will tell you what has been changed in the last week.
+9/15/99 Apparently, newer alphas of MySQL won't allow you to have
+"when" as a column name. So, I have had to rename a column in the
+bugs_activity table. You must feed the below to mysql or you won't
+work at all.
+
+ alter table bugs_activity change column when bug_when datetime not null;
+
+
8/16/99 Added "OpenVMS" to the list of OS's. Feed this to mysql:
alter table bugs change column op_sys op_sys enum("All", "Windows 3.1", "Windows 95", "Windows 98", "Windows NT", "Mac System 7", "Mac System 7.5", "Mac System 7.6.1", "Mac System 8.0", "Mac System 8.5", "Mac System 8.6", "AIX", "BSDI", "HP-UX", "IRIX", "Linux", "FreeBSD", "OSF/1", "Solaris", "SunOS", "Neutrino", "OS/2", "BeOS", "OpenVMS", "other") not null;