method
create!
create!(attrs = {}, replace_existing = true)
public
Hide source
# File activerecord/lib/active_record/associations/has_one_association.rb, line 15 def create!(attrs = {}, replace_existing = true) new_record(replace_existing) do |reflection| reflection.create_association!(attrs) end end