我创建了一个 migration
class CreateSuppliersCodes < ActiveRecord::Migration
def up
create_table :suppliers_codes, :id => false do |t|
t.references :supplier
t.references :code
end
end
def down
drop_table :suppliers_codes
end
end
migrate 之后的表的名字是什么 为什么我在 rails c 中输入 Suppliers_codes 会提示 uninitialized constant 很明显表的名字输错了,正确的是什么,求助,有没有什么链接讲这方面的表与 model name 的对应关系