summaryrefslogtreecommitdiffstats
path: root/makeactivitytable.sh
diff options
context:
space:
mode:
authorterry%netscape.com <>1999-03-24 07:32:19 +0100
committerterry%netscape.com <>1999-03-24 07:32:19 +0100
commit19ca3aa8dbc4f551836cd0dac9150118c9128ee1 (patch)
tree03ae4669a496ee9dee3ac21482bbf79089a2dc6a /makeactivitytable.sh
parent57f0b7a2c7ed40c7eb2029bf1091c3f262b1e23f (diff)
downloadbugzilla-19ca3aa8dbc4f551836cd0dac9150118c9128ee1.tar.gz
bugzilla-19ca3aa8dbc4f551836cd0dac9150118c9128ee1.tar.xz
Can now query for a specified field being changed at a specified time,
optionally to a specified value.
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)
);