method

define_destroy_dependency_method

define_destroy_dependency_method()
private

No documentation available.

# File activerecord/lib/active_record/associations/builder/has_one.rb, line 46
      def define_destroy_dependency_method
        name = self.name
        mixin.redefine_method(dependency_method_name) do
          association(name).delete
        end
      end