From 1008fc9fa512222979ae23e02e7db30c3e04d592 Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" <> Date: Thu, 16 Sep 1999 00:25:26 +0000 Subject: 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. --- makeactivitytable.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'makeactivitytable.sh') 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) ); -- cgit v1.2.3-24-g4f1b