Edgewall Software

Changes between Initial Version and Version 1 of Trac Upgrade


Ignore:
Timestamp:
Jan 1, 1970, 1:00:00 AM (54 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Trac Upgrade

    v1 v1  
     1= Upgrade Instructions =
     2[[TracGuideToc]]
     3
     4Trac environments sometimes need to be upgraded before they can be used
     5in a new version of Trac. This document describes the steps necessary
     6to upgrade an environment.
     7
     8== From 0.7.x to 0.8 ==
     9
     10The database schema was changed between 0.7.x and 0.8. Existing environments
     11must be upgraded before they can be used with Trac 0.8.
     12
     13The following command will automatically perform the upgrade:
     14{{{
     15 $ trac-admin /path/to/projectenv upgrade
     16}}}
     17
     18Trac environments are created with a default set of wiki pages. It's
     19recommended to update these pages on existing environments whenever
     20Trac is upgraded to get up-to-date documentation and additional functionality.
     21The following command will perform the update:
     22{{{
     23 $ trac-admin /path/to/projectenv wiki upgrade
     24}}}
     25
     260.8 adds a new roadmap feature which requires additional permissions. While a
     27fresh installation will by default grant ROADMAP_VIEW and MILESTONE_VIEW
     28permissions to anonymous, these permissions have to be granted manually when
     29upgrading:
     30{{{
     31 $ trac-admin /path/to/projectenv permission add anonymous MILESTONE_VIEW
     32 $ trac-admin /path/to/projectenv permission add anonymous ROADMAP_VIEW
     33}}}
     34
     35-----
     36See also: TracGuide, TracInstall