summaryrefslogtreecommitdiffstats
path: root/makeactivitytable.sh
diff options
context:
space:
mode:
Diffstat (limited to 'makeactivitytable.sh')
-rwxr-xr-xmakeactivitytable.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/makeactivitytable.sh b/makeactivitytable.sh
index 047d81e7e..9af62ef61 100755
--- a/makeactivitytable.sh
+++ b/makeactivitytable.sh
@@ -24,7 +24,6 @@ use bugs;
drop table bugs_activity
OK_ALL_DONE
-
mysql << OK_ALL_DONE
use bugs;
create table bugs_activity (
@@ -36,7 +35,8 @@ create table bugs_activity (
newvalue tinytext,
index (bug_id),
- index (when)
+ index (when),
+ index (field)
);