7 lines
130 B
Ruby
7 lines
130 B
Ruby
class DocumentOrder < ActiveRecord::Base
|
|
belongs_to :data_file
|
|
belongs_to :contact
|
|
|
|
validates :qte, :presence => true
|
|
end
|