Changes between Initial Version and Version 1 of TracUpgrade


Ignore:
Timestamp:
02/23/05 16:07:38 (19 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracUpgrade

    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 
     26----- 
     27See also: TracGuide, TracInstall