I'm trying to set the timestamps manually. Can't get it to do anything
but set it to the current time when it saves.  Please help. (it's on
heroku)

desc "restore timestamps for updated_at in questions"
task "restore_timestamps" do
  require 'time'
  require File.dirname(RAILS_ROOT) + '/mnt/config/boot'
  require File.dirname(RAILS_ROOT) + '/mnt/config/environment'

  str = "2010-11-05 14:49:13 UTC"

  q = Question.find(1)
  q.class.record_timestamps = false
  q.updated_at = Time.parse(str)
  q.save!
  q.class.record_timestamps = true

  # still shows new timestamp
end

-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-t...@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to