It seems that in rails 3 (version 3.0.7) validates_associated is enabled by default (and as a result it is deprecated).
My model Payment has an associated model Reminder:
class Payment < ActiveRecord::Base
belongs_to :reminder
end
whenever I create a new payment, it also validates the associated reminder. I want to skip this. Adding :validate => false to the relation didn't work. Any suggestions? And also if someone could tell about the changes in rails 3 w.r.t validates_associated, as I couldn't find it.