From 5683ca475d5d89dd8eae076ccf680bed256f80ef Mon Sep 17 00:00:00 2001 From: "terry%netscape.com" <> Date: Tue, 19 Jan 1999 08:07:45 +0000 Subject: Majorly changed querying of email addresses. --- CHANGES | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'CHANGES') diff --git a/CHANGES b/CHANGES index 66c8437c1..fabe02e1e 100644 --- a/CHANGES +++ b/CHANGES @@ -11,6 +11,12 @@ will tell you what has been changed in the last week. +1/18/99 You can now query by CC. To make this perform reasonably, the CC table +needs some indices. The following MySQL does the necessary stuff: + + alter table cc add index (bug_id), add index (who); + + 1/15/99 The op_sys field can now be queried by (and more easily tweaked). To make this perform reasonably, it needs an index. The following MySQL command will create the necessary index: @@ -63,6 +69,17 @@ entries: 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.1.6", "Mac System 8.0", "AIX", "BSDI", "HP-UX", "IRIX", "Linux", "OSF/1", "Solaris", "SunOS", "other") not null, change column rep_platform rep_platform enum("All", "DEC", "HP", "Macintosh", "PC", "SGI", "Sun", "Other"); + + + +11/20/98 Added searching of CC field. To better support this, added +some indexes to the CC table. You probably want to execute the following +mysql commands: + + alter table cc add index (bug_id); + alter table cc add index (who); + + 10/27/98 security check for legal products in place. bug charts are not available as an option if collectstats.pl has never been run. all products get daily stats collected now. README updated: Chart::Base is listed as -- cgit v1.2.3-24-g4f1b