method

application_record_class?

Importance_0
Ruby on Rails latest stable (v7.1.3.2) - 0 notes - Class: Core
application_record_class?() 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/core.rb, line 105
      def self.application_record_class? # :nodoc:
        if ActiveRecord.application_record_class
          self == ActiveRecord.application_record_class
        else
          if defined?(ApplicationRecord) && self == ApplicationRecord
            true
          end
        end
      end
Register or log in to add new notes.