Sha256: c51efb34c7f9941b4156e2d0eec2a1ed489b5c4f700f521e5e655d03a1012cc2
Contents?: true
Size: 533 Bytes
Versions: 24
Compression:
Stored size: 533 Bytes
Contents
# encoding: utf-8 module Mongoid # :nodoc: module Relations #:nodoc: module Cascading #:nodoc: class Destroy < Strategy # Execute the cascading deletion for the relation if it already exists. # This should be optimized in the future potentially not to load all # objects from the db. # # @example Perform the cascading destroy. # strategy.cascade def cascade relation.to_a.each { |doc| doc.destroy } if relation end end end end end
Version data entries
24 entries across 24 versions & 3 rubygems