Vote #76002
未完了migrate_from_mantis with NoMethodError: strftime
0%
説明
I am migrating from Mantis 1.1.8 to Redmine 2.6.1.stable
Using: rake --trace redmine:migrate_from_mantis RAILS_ENV="production"
I get the following error:
NoMethodError: undefined method `strftime' for 1411982898:Fixnum
I have applied: #10504
But with no success.
Any hints?
journals
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
With the following changes:
# Bug files
- bug.bug_files.each do |file|
- a = Attachment.new :created_on => file.date_added
+ bug.bug_files.each do |file|
+ a = Attachment.new :created_on => *Time.at(file.date_added)*
The problem is resolved!
Attached patch
--------------------------------------------------------------------------------
related_issues
relates,Resolved,10504,migrate_from_mantis script fails on first project when trying to update version dates