Missing fields in csv export file

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
paus
Posts: 1
Joined: 14 Apr 2021, 14:10

Missing fields in csv export file

Post by paus »

Hello,

I couldn't find any issue on the forum related to my problem: recently I tried to export my Mantis datebase but two fields are missing in csv file: Description and Steps to Reproduce. Is there any way for those fields to be included in a csv export file?
Mantis version: 2.24.1

Regards.
cas
Posts: 1586
Joined: 11 Mar 2006, 16:08
Contact:

Re: Missing fields in csv export file

Post by cas »

use this query:
select a.*, b. description, b.steps_to_reproduce from mantis_bug_table a, mantis_bug_text_table b where a.bug_text_id = b.id

Make sure to adjust the table prefix in case yours is not 'mantis' :mrgreen:
Post Reply