2007-01-02 19:34:15 +03:00
|
|
|
== redMine upgrade procedure
|
|
|
|
|
|
|
|
redMine - project management software
|
|
|
|
Copyright (C) 2006-2007 Jean-Philippe Lang
|
|
|
|
http://redmine.rubyforge.org/
|
|
|
|
|
2007-01-21 14:50:22 +03:00
|
|
|
|
2007-01-28 01:35:58 +03:00
|
|
|
== Upgrading from 0.3.0 and above
|
2007-01-02 19:34:15 +03:00
|
|
|
|
|
|
|
1. Uncompress program archive in a new directory:
|
|
|
|
tar zxvf <filename>
|
|
|
|
|
2007-01-21 14:50:22 +03:00
|
|
|
3. Copy your database settings (database.yml) into the new config directory
|
2007-01-02 19:34:15 +03:00
|
|
|
|
|
|
|
4. Migrate your database:
|
2007-07-15 14:11:25 +04:00
|
|
|
rake db:migrate RAILS_ENV="production"
|
|
|
|
|
|
|
|
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
|
2007-02-18 15:26:06 +03:00
|
|
|
in database, as of version 0.4.2. Go to "Admin -> Settings" to edit them.
|
|
|
|
|
2007-01-02 19:34:15 +03:00
|
|
|
|
2007-01-21 14:50:22 +03:00
|
|
|
== From 0.2.x and below
|
2007-01-02 19:34:15 +03:00
|
|
|
|
|
|
|
Due to major database changes since 0.2.x, there is no migration support
|
|
|
|
from 0.2.x and previous versions.
|