2014-12-04 19:50:02 +01:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: order_products
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# order_id :integer
|
|
|
|
# product_id :integer
|
|
|
|
# count :integer default(1)
|
|
|
|
#
|
|
|
|
|
2014-11-25 14:27:27 +01:00
|
|
|
class OrderProduct < ActiveRecord::Base
|
|
|
|
belongs_to :order
|
|
|
|
belongs_to :product
|
2014-12-04 17:02:08 +01:00
|
|
|
|
2014-12-04 19:50:02 +01:00
|
|
|
validates :product, presence: true
|
|
|
|
validates :count, numericality: { greater_than_or_equal_to: 0 }
|
|
|
|
|
2014-12-04 17:02:08 +01:00
|
|
|
accepts_nested_attributes_for :product
|
2014-11-25 14:27:27 +01:00
|
|
|
end
|