diff options
author | terry%mozilla.org <> | 1999-09-16 00:25:26 +0000 |
---|---|---|
committer | terry%mozilla.org <> | 1999-09-16 00:25:26 +0000 |
commit | 1008fc9fa512222979ae23e02e7db30c3e04d592 (patch) | |
tree | 60737cf5fccb9580fa83e14422bf2cb60d522ace /CHANGES | |
parent | 20269fbbc7fe9226f2ed8a4c0470d7c84b795591 (diff) | |
download | bugs-1008fc9fa512222979ae23e02e7db30c3e04d592.tar bugs-1008fc9fa512222979ae23e02e7db30c3e04d592.tar.gz bugs-1008fc9fa512222979ae23e02e7db30c3e04d592.tar.bz2 bugs-1008fc9fa512222979ae23e02e7db30c3e04d592.tar.xz bugs-1008fc9fa512222979ae23e02e7db30c3e04d592.zip |
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-- | CHANGES | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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; |