Patch by holger@holger.om.org (Holger Schurig) -- was not correctly fixing up the 'when' column in the bugs_activity table.

This commit is contained in:
terry%mozilla.org 1999-10-14 22:35:12 +00:00
Родитель 10b2a08471
Коммит 4fc4a57e8c
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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');