7 lines
131 B
Ruby
7 lines
131 B
Ruby
class ContactProduct < ActiveRecord::Base
|
|
belongs_to :contact
|
|
belongs_to :d_product
|
|
|
|
validates :qte, :presence => true
|
|
end
|