summaryrefslogtreecommitdiffstats
path: root/makeactivitytable.sh
diff options
context:
space:
mode:
authorterry%mozilla.org <>1999-09-16 02:25:26 +0200
committerterry%mozilla.org <>1999-09-16 02:25:26 +0200
commit1008fc9fa512222979ae23e02e7db30c3e04d592 (patch)
tree60737cf5fccb9580fa83e14422bf2cb60d522ace /makeactivitytable.sh
parent20269fbbc7fe9226f2ed8a4c0470d7c84b795591 (diff)
downloadbugzilla-1008fc9fa512222979ae23e02e7db30c3e04d592.tar.gz
bugzilla-1008fc9fa512222979ae23e02e7db30c3e04d592.tar.xz
Patch by daa@rmi.net (Dave Avery) -- newer alphas of MySQL won't let
use "when" as a column name, so let's change our usage while it's still easy to do so.
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)
);