私の Rails アプリケーションには、customer と order という名前の 2 つのモデルが含まれています
class Customer < ActiveRecord::Base
attr_accessible :name
end
class Order < ActiveRecord::Base
belongs_to :customer
# attr_accessible :title, :body
end
コンソールで、顧客モデルのインスタンスを作成しました:
c=Customer.new(:name=>"Noa")
"c" を参照するインスタンス ツー オーダー モデルを作成したいのですが、どうすればよいですか? ありがとう!