method

using_single_table_inheritance?

using_single_table_inheritance?(record)
private

No documentation available.

# File activerecord/lib/active_record/inheritance.rb, line 175
      def using_single_table_inheritance?(record)
        record[inheritance_column].present? && columns_hash.include?(inheritance_column)
      end