aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
diff options
context:
space:
mode:
authorSebastian Martinez <sebastian@wyeworks.com>2011-05-15 21:33:49 -0300
committerSebastian Martinez <sebastian@wyeworks.com>2011-05-15 21:33:49 -0300
commit2470392e89e3320e0e5d4de4dd73db0fd4a30181 (patch)
tree9d97164499b131be9a1a07b3b2b6a3398e809734 /activerecord/lib/active_record
parentd043d6539682f804a696d301b580accfc68f6cce (diff)
downloadrails-2470392e89e3320e0e5d4de4dd73db0fd4a30181.tar.gz
rails-2470392e89e3320e0e5d4de4dd73db0fd4a30181.tar.bz2
rails-2470392e89e3320e0e5d4de4dd73db0fd4a30181.zip
Add doc to #attribute_names
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r--activerecord/lib/active_record/base.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb
index cfe6d8d2de..cd16b8d3ca 100644
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -767,6 +767,9 @@ module ActiveRecord #:nodoc:
super || (table_exists? && column_names.include?(attribute.to_s.sub(/=$/, '')))
end
+ # Returns an array of column names as strings if it's not
+ # an abstract class and table exists.
+ # Otherwise it returns an empty array.
def attribute_names
@attribute_names ||= if !abstract_class? && table_exists?
column_names