diff options
-rw-r--r-- | CHANGES | 8 | ||||
-rwxr-xr-x | makebugtable.sh | 2 |
2 files changed, 9 insertions, 1 deletions
@@ -10,6 +10,14 @@ query the CVS tree. For example, will tell you what has been changed in the last week. +1/29/99 Whoops; had a mispelled op_sys. It was "Mac System 7.1.6"; it should +be "Mac System 7.6.1". It turns out I had no bugs with this value set, so I +could just do the below simple command. If you have bugs with this value, you +may need to do something more complicated. + + 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", "AIX", "BSDI", "HP-UX", "IRIX", "Linux", "OSF/1", "Solaris", "SunOS", "OS/2", "other") not null; + + 1/20/99 Added new fields: Target Milestone, QA Contact, and Status Whiteboard. These fields are all optional in the UI; there are parameters to turn them on. diff --git a/makebugtable.sh b/makebugtable.sh index f0be77687..a37448a63 100755 --- a/makebugtable.sh +++ b/makebugtable.sh @@ -37,7 +37,7 @@ creation_ts datetime, delta_ts timestamp, short_desc mediumtext, long_desc mediumtext, -op_sys enum("All", "Windows 3.1", "Windows 95", "Windows 98", "Windows NT", "Mac System 7", "Mac System 7.5", "Mac System 7.1.6", "Mac System 8.0", "Mac System 8.5", "AIX", "BSDI", "HP-UX", "IRIX", "Linux", "OSF/1", "Solaris", "SunOS", "OS/2", "other") not null, +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", "AIX", "BSDI", "HP-UX", "IRIX", "Linux", "OSF/1", "Solaris", "SunOS", "OS/2", "other") not null, priority enum("P1", "P2", "P3", "P4", "P5") not null, product varchar(16) not null, rep_platform enum("All", "DEC", "HP", "Macintosh", "PC", "SGI", "Sun", "Other"), |