# File lib/dm-core/associations/one_to_many.rb, line 197
        def destroy!
          assert_mutable
          raise UnsavedParentError, 'You cannot mass-delete without validations until the parent is saved' if @parent.new_record?
          children.destroy!
        end