也许这是一个愚蠢的问题,但我需要在某些表格中使用多个主键...
create table t1
(
id int not null
id_something int not null
.
.
.
primary key (id, id_something)
)
我用谷歌搜索,发现了这个宝石http://rubygems.org/gems/composite_primary_keys
但我找不到我有的activerecord版本
我正在使用rails 3.0.12和ruby 1.9.2p320
答案 0 :(得分:25)
在控制台中运行bundle show activerecord
。
答案 1 :(得分:0)
在终端中运行 bundle info activerecord
作为bundle show activerecord
在某些 Rails 版本中已弃用。