Edgewall Software

Changes between Version 11 and Version 12 of 1.3/TracUpgrade


Ignore:
Timestamp:
May 14, 2017, 8:52:29 PM (7 years ago)
Author:
Ryan J Ollos
Comment:

Document upgrade step needed for #11649.

Legend:

Unmodified
Added
Removed
Modified
  • 1.3/TracUpgrade

    v11 v12  
    132132If other permission policies are enabled, `trac.ini` will need to be edited to add `DefaultWikiPolicy, DefaultTicketPolicy` to `permission_policies`. See [wiki:TracFineGrainedPermissions#DefaultWikiPolicyandDefaultTicketPolicy] for additional details on the proper ordering.
    133133
     134===== Description field added to ticket enums #enum-description-field
     135
     136The ticket enums now have a //description// field. An //ambiguous column name// error may be seen for reports that reference the `description` column of another table and join the `enum` table with another table that has a `description` field, such as the `ticket` and `component` tables. The reports 1, 2, 3, 4, 5, 7, and 8 are modified by an upgrade step to fix the issue, but the upgrade may fail if the default reports have been modified. Reports that display the error need to be modified to prefix the `description` column with the appropriate table name or alias. For example, if the `ticket` table is aliased as `t` (`ticket t` or `ticket AS t`), replace `description` with `t.description` if the report should use the ticket's `description` column.
    134137
    135138==== Upgrading from Trac 1.0 to 1.2 #to1.2