Flowdock
method

associated_with?

Importance_0
v7.1.3.2 - Show latest stable - 0 notes - Class: TableMetadata
associated_with?(table_name) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/table_metadata.rb, line 25
    def associated_with?(table_name)
      if reflection = klass&._reflect_on_association(table_name)
        reflection
      elsif ActiveRecord.allow_deprecated_singular_associations_name && reflection = klass&._reflect_on_association(table_name.singularize)
        ActiveRecord.deprecator.warn(<<~MSG)
          Referring to a singular association (e.g. `#{reflection.name}`) by its plural name (e.g. `#{reflection.plural_name}`) is deprecated.

          To convert this deprecation warning to an error and enable more performant behavior, set config.active_record.allow_deprecated_singular_associations_name = false.
        MSG
        reflection
      end
    end
Register or log in to add new notes.