Edgewall Software

Changes between Initial Version and Version 1 of TracUpgrade


Ignore:
Timestamp:
Nov 8, 2004, 8:57:56 PM (20 years ago)
Author:
Jonas Borgström
Comment:

Upgrade instructions

Legend:

Unmodified
Added
Removed
Modified
  • TracUpgrade

    v1 v1  
     1= Upgrade Instructions =
     2
     3Trac environments sometimes need to be upgraded before they can be used
     4in a new version of Trac. This document describes the steps necessary
     5to upgrade an environment.
     6
     7== From 0.7.x to 0.8 ==
     8
     9The database schema was changed between 0.7.x and 0.8. Existing environments
     10must be upgraded before they can be used with Trac 0.8.
     11The following command will perform the upgrade:
     12{{{
     13 $ trac-admin /path/to/projectenv upgrade
     14}}}
     15Trac environments are created with a default set of wiki pages. It's
     16recommended to update these pages on existing environments whenever
     17Trac is upgraded to get up-to-date documentation and additional functionality.
     18The following command will perform the update:
     19{{{
     20 $ trac-admin /path/to/projectenv wiki upgrade
     21}}}
     22-----
     23See also: TracGuide, TracInstall.