1
|
== redMine upgrade procedure
|
2
|
|
3
|
redMine - project management software
|
4
|
Copyright (C) 2006-2007 Jean-Philippe Lang
|
5
|
http://redmine.rubyforge.org/
|
6
|
|
7
|
|
8
|
== Upgrading from 0.3.0 and above
|
9
|
|
10
|
1. Uncompress program archive in a new directory:
|
11
|
tar zxvf <filename>
|
12
|
|
13
|
3. Copy your database settings (RAILS_ROOT/config/database.yml)
|
14
|
into the new config directory
|
15
|
|
16
|
4. Migrate your database:
|
17
|
rake db:migrate RAILS_ENV="production"
|
18
|
|
19
|
5. Copy the RAILS_ROOT/files directory content into your new installation
|
20
|
|
21
|
Note 1: Rails 1.2.2 is required for version 0.4.2 and later.
|
22
|
|
23
|
Note 2: when upgrading your code with svn update, don't forget to clear
|
24
|
the application cache (RAILS_ROOT/tmp/cache) before restarting.
|
25
|
|
26
|
Note 3: settings previously defined in custom_config.rb are now stored
|
27
|
in database, as of version 0.4.2. Go to "Admin -> Settings" to edit them.
|
28
|
|
29
|
|
30
|
== From 0.2.x and below
|
31
|
|
32
|
Due to major database changes since 0.2.x, there is no migration support
|
33
|
from 0.2.x and previous versions.
|