# File lib/dm-core/associations/one_to_many.rb, line 185
        def update!(attributes = {})
          assert_mutable
          raise UnsavedParentError, 'You cannot mass-update without validations until the parent is saved' if @parent.new_record?
          children.update!(attributes)
        end