1

我正在为设备和讲师创建一个名为 EquipmentOwnership 的连接表。

class EquipmentOwnership < ActiveRecord::Base
  attr_accessible :equipment_id, :instructor_id, :owned

  belongs_to :equipment
  belongs_to :instructor
end

它在我的架构中显示如下:

create_table "equiment_ownerships", :force => true do |t|
  t.integer "equipment_id"
  t.integer "instructor_id"
  t.boolean "owned"
end

但是,这是在 rails 控制台中发生的情况:

[1] pry(main)> EquipmentOwnership
=> EquipmentOwnership(Table doesn't exist)

它可能这样做的可能原因是什么?

我正在使用 Postgres、rails 3.2、ruby 1.9.3p194 和 OSX 山狮。

4

1 回答 1

3

create_table "equiment_ownerships"缺少一个p. 所以,应该是:
create_table "equipment_ownerships"

于 2013-01-29T03:46:42.970 回答