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 9af62ef61..759ac968d 100755
--- a/makeactivitytable.sh
+++ b/makeactivitytable.sh
@@ -29,13 +29,13 @@ use bugs;
create table bugs_activity (
bug_id mediumint not null,
who mediumint not null,
- when datetime not null,
+ bug_when datetime not null,
field varchar(64) not null,
oldvalue tinytext,
newvalue tinytext,
index (bug_id),
- index (when),
+ index (bug_when),
index (field)
);