Edgewall Software

Changes between Version 12 and Version 13 of 1.3/TracUpgrade


Ignore:
Timestamp:
May 14, 2017, 10:04:11 PM (7 years ago)
Author:
Ryan J Ollos
Comment:

Improve description.

Legend:

Unmodified
Added
Removed
Modified
  • 1.3/TracUpgrade

    v12 v13  
    134134===== Description field added to ticket enums #enum-description-field
    135135
    136 The 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.
     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 that table (e.g. `ticket`, `component`). The reports {1}, {2}, {3}, {4}, {5}, {7}, and {8} are modified by an upgrade step to fix the issue, but the modification may not succeed if the default reports have been modified, in which case `upgrade` will output a message to the terminal instructing the user to modify the reports. User-created reports may also need to be modified.
     137
     138Reports 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.
    137139
    138140==== Upgrading from Trac 1.0 to 1.2 #to1.2