Trac importer: prevent validation failure due to the default value when saving the Resolution custom field if it already exists (#869).

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1286 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2008-03-21 21:37:40 +00:00
parent 180fe8f6a4
commit 7fb72e671b
1 changed files with 3 additions and 2 deletions

View File

@ -324,8 +324,9 @@ namespace :redmine do
:is_filter => true) if r.nil?
r.trackers = Tracker.find(:all)
r.projects << @target_project
r.possible_values = %w(fixed invalid wontfix duplicate worksforme)
custom_field_map['resolution'] = r if r.save
r.possible_values = (r.possible_values + %w(fixed invalid wontfix duplicate worksforme)).flatten.compact.uniq
r.save!
custom_field_map['resolution'] = r
# Tickets
print "Migrating tickets"