From: terry%mozilla.org <> Date: Fri, 15 Oct 1999 05:35:12 +0000 (+0000) Subject: Patch by holger@holger.om.org (Holger Schurig) -- was not correctly fixing up the... X-Git-Tag: bugzilla-2.8~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=88e4e7eaae0c4d7177bc30c6f992e84396b0a4ed;p=thirdparty%2Fbugzilla.git Patch by holger@holger.om.org (Holger Schurig) -- was not correctly fixing up the 'when' column in the bugs_activity table. --- diff --git a/checksetup.pl b/checksetup.pl index c6d1e50fd4..0b30fa4d90 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -925,9 +925,9 @@ AddField('attachments', 'submitter_id', 'mediumint not null'); # 9/15/99 Apparently, newer alphas of MySQL won't allow you to have "when" # as a column name. So, I have had to rename a column in the bugs_activity -# table. You must feed the below to mysql or you won't work at all. +# table. -RenameField ('bugs', 'when', 'bug_when'); +RenameField ('bugs_activity', 'when', 'bug_when');