Primary Key
primary_key
primary_key=class Project < ActiveRecord::Base
self.primary_key = 'sysid'
end
# 或
class Project < ActiveRecord::Base
def self.primary_key
'foo_' + super
end
end
Project.primary_key # => "foo_id"最后更新于
primary_key
primary_key=class Project < ActiveRecord::Base
self.primary_key = 'sysid'
end
# 或
class Project < ActiveRecord::Base
def self.primary_key
'foo_' + super
end
end
Project.primary_key # => "foo_id"最后更新于
dangerous_attribute_method?
define_method_attribute
quoted_primary_keyid
id=
id?
id_before_type_cast
id_was
to_key