Class: Mongoid::Relations::Cascading::Nullify
- Inherits:
-
Object
- Object
- Mongoid::Relations::Cascading::Nullify
- Defined in:
- lib/mongoid/relations/cascading/nullify.rb
Instance Attribute Summary collapse
-
#document ⇒ Object
Returns the value of attribute document.
-
#metadata ⇒ Object
Returns the value of attribute metadata.
-
#relation ⇒ Object
Returns the value of attribute relation.
Instance Method Summary collapse
-
#cascade ⇒ Object
This cascade does not delete the referenced relations, but instead sets the foreign key values to nil.
-
#initialize(document, metadata) ⇒ Strategy
constructor
Initialize the new cascade strategy, which will set up the relation and the metadata.
Constructor Details
#initialize(document, metadata) ⇒ Strategy
Initialize the new cascade strategy, which will set up the relation and the metadata.
19 20 21 22 |
# File 'lib/mongoid/relations/cascading/nullify.rb', line 19 def initialize(document, ) @document, @metadata = document, @relation = document.send(.name) end |
Instance Attribute Details
#document ⇒ Object
Returns the value of attribute document.
7 8 9 |
# File 'lib/mongoid/relations/cascading/nullify.rb', line 7 def document @document end |
#metadata ⇒ Object
Returns the value of attribute metadata.
7 8 9 |
# File 'lib/mongoid/relations/cascading/nullify.rb', line 7 def @metadata end |
#relation ⇒ Object
Returns the value of attribute relation.
7 8 9 |
# File 'lib/mongoid/relations/cascading/nullify.rb', line 7 def relation @relation end |
Instance Method Details
#cascade ⇒ Object
This cascade does not delete the referenced relations, but instead sets the foreign key values to nil.
29 30 31 |
# File 'lib/mongoid/relations/cascading/nullify.rb', line 29 def cascade relation.nullify if relation end |