From 1008fc9fa512222979ae23e02e7db30c3e04d592 Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" <> Date: Thu, 16 Sep 1999 00:25:26 +0000 Subject: 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. --- CHANGES | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'CHANGES') 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; -- cgit v1.2.3-24-g4f1b