method
create!
v2.2.1 -
Show latest stable
- Class:
ActiveRecord::Associations::HasOneAssociation
create!(attrs = {}, replace_existing = true)public
No documentation available.
# 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