0.17.5 -> 1.0.2: Database field fixed_in_version not foun

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
skayser
Posts: 9
Joined: 20 Apr 2006, 15:05

0.17.5 -> 1.0.2: Database field fixed_in_version not foun

Post by skayser »

Hi all,

we just did an upgrade from Version 0.17.5 to version 1.0.2 this weekend.

Everything is running fine so far, besides a warning message which is displayed to a user each time he changes the status of a bug to resolved (Application warning #403: Database field 'fixed_in_version' not found.).

I took a look at the 'mantis_bug_table'

mysql> describe mantis_bug_table;
...
| Fixed_in_version | varchar(64) | | MUL | | |
...

and changed the column definition

mysql> alter table mantis_bug_table change Fixed_in_version fixed_in_version varchar(64) NOT NULL default '';
mysql> describe mantis_bug_table;
...
| fixed_in_version | varchar(64) | | MUL | | |
...

Now the warning message has dissapeared, but is this expected behaviour or has something gone wrong during the upgrade?

I just checked the column definition from our pre-upgrade-database-backup and there the column was correctly named 'fixed_in_version'.

Cheers,

Sebastian
Post Reply