aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/attribute_methods.rb
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2012-03-28 16:09:01 +0100
committerJon Leighton <j@jonathanleighton.com>2012-03-28 16:09:01 +0100
commit1b9fd797b3a3183044a3d7b9965b535ee7e27bc6 (patch)
treef6fea92512fec6865e4ac7ad494e79bf425e7871 /activerecord/lib/active_record/attribute_methods.rb
parent4c44ca5cb9544b4186a0c9d54a7bfc9d30896f62 (diff)
downloadrails-1b9fd797b3a3183044a3d7b9965b535ee7e27bc6.tar.gz
rails-1b9fd797b3a3183044a3d7b9965b535ee7e27bc6.tar.bz2
rails-1b9fd797b3a3183044a3d7b9965b535ee7e27bc6.zip
Fix #5549.
Diffstat (limited to 'activerecord/lib/active_record/attribute_methods.rb')
-rw-r--r--activerecord/lib/active_record/attribute_methods.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/attribute_methods.rb b/activerecord/lib/active_record/attribute_methods.rb
index 2a7a77777d..06b66b5195 100644
--- a/activerecord/lib/active_record/attribute_methods.rb
+++ b/activerecord/lib/active_record/attribute_methods.rb
@@ -64,6 +64,7 @@ module ActiveRecord
return if attribute_methods_generated?
superclass.define_attribute_methods unless self == base_class
super(column_names)
+ column_names.each { |name| define_external_attribute_method(name) }
@attribute_methods_generated = true
end
end