UPGRADING
33 lines
| 1015 B
| text/plain
|
TextLexer
/ doc / UPGRADING
|
r140 | == redMine upgrade procedure | ||
redMine - project management software | ||||
Copyright (C) 2006-2007 Jean-Philippe Lang | ||||
http://redmine.rubyforge.org/ | ||||
|
r164 | |||
|
r195 | == Upgrading from 0.3.0 and above | ||
|
r140 | |||
1. Uncompress program archive in a new directory: | ||||
tar zxvf <filename> | ||||
|
r618 | 3. Copy your database settings (RAILS_ROOT/config/database.yml) | ||
into the new config directory | ||||
|
r140 | |||
4. Migrate your database: | ||||
|
r586 | rake db:migrate RAILS_ENV="production" | ||
|
r618 | 5. Copy the RAILS_ROOT/files directory content into your new installation | ||
|
r586 | Note 1: Rails 1.2.2 is required for version 0.4.2 and later. | ||
Note 2: when upgrading your code with svn update, don't forget to clear | ||||
the application cache (RAILS_ROOT/tmp/cache) before restarting. | ||||
Note 3: settings previously defined in custom_config.rb are now stored | ||||
|
r251 | in database, as of version 0.4.2. Go to "Admin -> Settings" to edit them. | ||
|
r140 | |||
|
r164 | == From 0.2.x and below | ||
|
r140 | |||
Due to major database changes since 0.2.x, there is no migration support | ||||
from 0.2.x and previous versions. | ||||