summaryrefslogtreecommitdiffstats
path: root/makecctable.sh
diff options
context:
space:
mode:
authorterry%netscape.com <>1999-01-19 09:07:45 +0100
committerterry%netscape.com <>1999-01-19 09:07:45 +0100
commit5683ca475d5d89dd8eae076ccf680bed256f80ef (patch)
treeba80468bbff31b60c36296c21fdf55753a009c9f /makecctable.sh
parentccb7eb4de2f2db328c1ab716e58074655b993b19 (diff)
downloadbugzilla-5683ca475d5d89dd8eae076ccf680bed256f80ef.tar.gz
bugzilla-5683ca475d5d89dd8eae076ccf680bed256f80ef.tar.xz
Majorly changed querying of email addresses.
Diffstat (limited to 'makecctable.sh')
-rwxr-xr-xmakecctable.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/makecctable.sh b/makecctable.sh
index 44c50ca92..f0bde191b 100755
--- a/makecctable.sh
+++ b/makecctable.sh
@@ -29,7 +29,10 @@ mysql << OK_ALL_DONE
use bugs;
create table cc (
bug_id mediumint not null,
- who mediumint not null
+ who mediumint not null,
+
+ index(bug_id),
+ index(who)
);