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