aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/attribute_methods
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-07-30 14:05:08 -0500
committerJoshua Peek <josh@joshpeek.com>2009-07-30 17:54:01 -0500
commit2c30c9fe6c22f0342aa0be3909efa3a5787dc33d (patch)
tree87abd967bfb9d029def3533ba6b2a4d82c162b69 /activerecord/lib/active_record/attribute_methods
parentf8d2c77c9056e16d4f98020c94f9316835c4e099 (diff)
downloadrails-2c30c9fe6c22f0342aa0be3909efa3a5787dc33d.tar.gz
rails-2c30c9fe6c22f0342aa0be3909efa3a5787dc33d.tar.bz2
rails-2c30c9fe6c22f0342aa0be3909efa3a5787dc33d.zip
Undefine id and let it automatically be generated
Diffstat (limited to 'activerecord/lib/active_record/attribute_methods')
-rw-r--r--activerecord/lib/active_record/attribute_methods/read.rb13
1 files changed, 2 insertions, 11 deletions
diff --git a/activerecord/lib/active_record/attribute_methods/read.rb b/activerecord/lib/active_record/attribute_methods/read.rb
index a3327dc083..2ea09499c5 100644
--- a/activerecord/lib/active_record/attribute_methods/read.rb
+++ b/activerecord/lib/active_record/attribute_methods/read.rb
@@ -5,6 +5,7 @@ module ActiveRecord
included do
attribute_method_suffix ""
+ undef_method :id
end
module ClassMethods
@@ -54,7 +55,7 @@ module ActiveRecord
if cache_attribute?(attr_name)
access_code = "@attributes_cache['#{attr_name}'] ||= (#{access_code})"
end
- evaluate_attribute_method attr_name, "def #{symbol}; #{access_code}; end", attr_name
+ evaluate_attribute_method attr_name, "def #{symbol}; #{access_code}; end", symbol
end
end
@@ -78,16 +79,6 @@ module ActiveRecord
end
end
- # A model instance's primary key is always available as model.id
- # whether you name it the default 'id' or set it to something else.
- def id
- attr_name = self.class.primary_key
- column = column_for_attribute(attr_name)
-
- self.class.send(:define_read_method, :id, attr_name, column)
- id
- end
-
# Returns true if the attribute is of a text column and marked for serialization.
def unserializable_attribute?(attr_name, column)
column.text? && self.class.serialized_attributes[attr_name]