私はBrand
モデルとモデルを持っているPrice
ので、次のようになります。
brand.rb
class Brand < ActiveRecord::Base
attr_accessible :name, :a4_single, :a4_double, :a3_double, :two_a3_double
has_many :prices, :dependent => :destroy
end
price.rb
class Price < Brand
attr_accessible :type, :quantity, :price, :brand_id
belongs_to :brand
end
各製品列に複数の Price
レコードを挿入できるようにしたいです。つまり、10レコード、8レコード、2レコード、8レコードなどです。Price
:a4_single
:a4_double
:a3_double
:two_a3_double
上で定義した関係が正しいと推測しているだけでhas_many
、ここから先に進む方法が本当にわかりません。