我在哪里错了?我收到此错误:
unknown attribute: bar_id
我有这两个类:
class Foo < ActiveRecord::Base
belongs_to :bar
end
class Bar < ActiveRecord::Base
has_many :bazs
has_many :foos
end
当我尝试使用以下方法创建新的 Foos 时出现此错误:
@bar = Bar.find(1)
@bar.foos.create(:attribute1 => "a",
:attribute2 => "b")