Flowdock
method

reflection_class

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: TableRow
reflection_class() private

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/fixture_set/table_row.rb, line 68
        def reflection_class
          @reflection_class ||= if @row.include?(model_metadata.inheritance_column_name)
            @row[model_metadata.inheritance_column_name].constantize rescue model_class
          else
            model_class
          end
        end
Register or log in to add new notes.