instance method
symbolized_sti_name
Ruby on Rails 4.2.9
Since v3.2.22.5 Last seen in v4.2.9Signature
symbolized_sti_name()
No documentation comment.
Source
# File activerecord/lib/active_record/inheritance.rb, line 87
def symbolized_sti_name
ActiveSupport::Deprecation.warn('`ActiveRecord::Base.symbolized_sti_name` is deprecated and will be removed without replacement.')
@symbolized_sti_name ||= sti_name.present? ? sti_name.to_sym : symbolized_base_class
end
Defined in activerecord/lib/active_record/inheritance.rb line 87
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::Inheritance::ClassMethods