summaryrefslogtreecommitdiffstats
path: root/makecctable.sh
diff options
context:
space:
mode:
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)
);