aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2010-08-13 22:15:15 -0300
committerXavier Noria <fxn@hashref.com>2010-08-14 13:17:31 +0200
commit36a84a4f15f29b41c7cac2f8de410055006a8a8d (patch)
tree7dde55f401b7614db9f999344070ae25a1d8f629 /activerecord/lib
parent48c7ad17b0e87d315b68c0075046fd29e8802e93 (diff)
downloadrails-36a84a4f15f29b41c7cac2f8de410055006a8a8d.tar.gz
rails-36a84a4f15f29b41c7cac2f8de410055006a8a8d.tar.bz2
rails-36a84a4f15f29b41c7cac2f8de410055006a8a8d.zip
Makes AR use AMo to_key implementation
[#5249]
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/attribute_methods/primary_key.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/activerecord/lib/active_record/attribute_methods/primary_key.rb b/activerecord/lib/active_record/attribute_methods/primary_key.rb
index 82d94b848a..365fdeb55a 100644
--- a/activerecord/lib/active_record/attribute_methods/primary_key.rb
+++ b/activerecord/lib/active_record/attribute_methods/primary_key.rb
@@ -3,12 +3,6 @@ module ActiveRecord
module PrimaryKey
extend ActiveSupport::Concern
- # Returns this record's primary key value wrapped in an Array
- # or nil if the record is a new_record?
- def to_key
- new_record? ? nil : [ id ]
- end
-
module ClassMethods
# Defines the primary key field -- can be overridden in subclasses. Overwriting will negate any effect of the
# primary_key_prefix_type setting, though.