# File lib/dm-core/associations/one_to_many.rb, line 154
        def build(attributes = {})
          assert_mutable
          attributes = default_attributes.merge(attributes)
          resource = children.respond_to?(:build) ? children.build(attributes) : new_child(attributes)
          resource
        end