Module: DataMapper::Constraints::Adapters::AbstractAdapter
- Defined in:
- lib/data_mapper/constraints/adapters/abstract_adapter.rb
Instance Method Summary collapse
- #constraint_exists? ⇒ Boolean private
- #create_relationship_constraint ⇒ Object private
- #destroy_relationship_constraint ⇒ Object private
Instance Method Details
#constraint_exists? ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
9 10 11 |
# File 'lib/data_mapper/constraints/adapters/abstract_adapter.rb', line 9 def constraint_exists?(*) false end |
#create_relationship_constraint ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
14 15 16 |
# File 'lib/data_mapper/constraints/adapters/abstract_adapter.rb', line 14 def create_relationship_constraint(*) false end |
#destroy_relationship_constraint ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
19 20 21 |
# File 'lib/data_mapper/constraints/adapters/abstract_adapter.rb', line 19 def destroy_relationship_constraint(*) false end |