Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The #new_record? function determines if a record has been saved. But it is always false in after_save hook. Is there a way to determine whether the record is a newly created record or an old one from update?

I'm hoping not to use another callback such as before_create to set a flag in the model or require another query into the db.

Any advise is appreciated.

Edit: Need to determine it in after_save hook, and for my particular use case, there is no updated_at or updated_on timestamp

share|improve this question
1  
hmm maybe pass a param in a before_save? just thinking out loud – Trip Feb 12 '11 at 0:50

4 Answers

up vote 28 down vote accepted

I was looking to use this for an after_save callback. A simpler solution is to use id_changed? (since it won't change on update) or even created_at_changed? if timestamp columns are present.

share|improve this answer
1  
via ActiveModel::Dirty – chaserx Jul 3 '12 at 21:16

No rails magic here that I know of, you'll have to do it yourself. You could clean this up using a virtual attribute...

In your model class:

def before_save
  @was_a_new_record = new_record?
  return true
end

def after_save
  if @was_a_new_record
    ...
  end
end
share|improve this answer
Thanks, save my day ;) – Donny Kurnia Mar 8 '11 at 10:49

There is an after_create callback which is only called if the record is a new record, after it is saved. There is also an after_update callback for use if this was an existing record which was changed and saved. The after_save callback is called in both cases, after either after_create or after_update is called.

Use after_create if you need something to happen once after a new record has been saved.

More info here: http://api.rubyonrails.org/classes/ActiveRecord/Callbacks.html

share|improve this answer
Hey, thanks for the answer, this helped me a lot. Cheers man, +10 :) – Adam McArthur Dec 16 '12 at 14:40

Yet another option, for those who do have an updated_at timestamp:

if created_at == updated_at
  # it's a newly created record
end
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.