method
create_record
create_record(attrs)
private
Hide source
# File activerecord/lib/active_record/associations/association_collection.rb, line 398 def create_record(attrs) attrs.update(@reflection.options[:conditions]) if @reflection.options[:conditions].is_a?(Hash) ensure_owner_is_not_new record = @reflection.klass.send(:with_scope, :create => construct_scope[:create]) do @reflection.build_association(attrs) end if block_given? add_record_to_target_with_callbacks(record) { |*block_args| yield(*block_args) } else add_record_to_target_with_callbacks(record) end end