Edgewall Software

Changes between Version 14 and Version 15 of TracReports


Ignore:
Timestamp:
Feb 10, 2005, 5:55:39 AM (19 years ago)
Author:
jim@…
Comment:

Added hints for custom field reporting

Legend:

Unmodified
Added
Removed
Modified
  • TracReports

    v14 v15  
    192192}}}
    193193
     194=== Reporting on custom fields ===
     195
     196If you have added custom fields to your tickets (experimental feature in v0.8, see TracTicketsCustomFields), you can write a SQL query to cover them. You'll need to make a join on the ticket_custom table, but this isn't especially easy.
     197
     198If you have tickets in the database ''before'' you declare the extra fields in trac.ini, there will be no associated data in the ticket_custom table. To get around this, use SQL's "LEFT OUTER JOIN" clauses. See TracIniReportCustomFieldSample for some examples.
    194199
    195200----