我正在尝试使用http://compositekeys.rubyforge.org/以便在我的 activerecord 模型中拥有复合主键。
我已经添加gem 'composite_primary_keys', '=3.1.0'
到我的 Gemfile 中。现在我正在尝试如下设置我的第一个模型类。
class StringProperty < ActiveRecord::Base
self.primary_keys :entity_id, :property_id
set_table_name "problem.string_property"
attr_accessible :entity_id, :property_id, :value
end
但我得到的只是:
我究竟做错了什么?:(