aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/inheritance.rb
diff options
context:
space:
mode:
authorAlex Kitchens <akitchens@financialpayments.com>2016-06-23 08:12:17 -0500
committerAlex Kitchens <akitchens@financialpayments.com>2016-06-23 08:12:17 -0500
commit415856663df4794350e034d85dcc6c5f3d6b82b9 (patch)
tree6a4f34fd098120ed631730b60fe9209491e82192 /activerecord/lib/active_record/inheritance.rb
parent48f896cd504331a5d1d78324a4b7d5969a06606e (diff)
downloadrails-415856663df4794350e034d85dcc6c5f3d6b82b9.tar.gz
rails-415856663df4794350e034d85dcc6c5f3d6b82b9.tar.bz2
rails-415856663df4794350e034d85dcc6c5f3d6b82b9.zip
[ci skip] Update Documentation on ActiveRecord::Inheritance
Diffstat (limited to 'activerecord/lib/active_record/inheritance.rb')
-rw-r--r--activerecord/lib/active_record/inheritance.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/inheritance.rb b/activerecord/lib/active_record/inheritance.rb
index 899683ee4f..b5fec57c8c 100644
--- a/activerecord/lib/active_record/inheritance.rb
+++ b/activerecord/lib/active_record/inheritance.rb
@@ -19,7 +19,7 @@ module ActiveRecord
# Be aware that because the type column is an attribute on the record every new
# subclass will instantly be marked as dirty and the type column will be included
# in the list of changed attributes on the record. This is different from non
- # STI classes:
+ # Single Table Inheritance(STI) classes:
#
# Company.new.changed? # => false
# Firm.new.changed? # => true
@@ -37,6 +37,7 @@ module ActiveRecord
included do
# Determines whether to store the full constant name including namespace when using STI.
+ # This is true, by default.
class_attribute :store_full_sti_class, instance_writer: false
self.store_full_sti_class = true
end