class ActiveRecord::Reflection::AssociationReflection

def create_association!(*options)

Returns the newly created object.

exception will be raised.
creation method. If the created record doesn't pass validations, then an
with ActiveRecord::Base#save!. +options+ will be passed to the class's
Creates a new instance of the associated class, and immediates saves it
def create_association!(*options)
  klass.create!(*options)
end