2019-01-13 07:05:54 +01:00
|
|
|
class OrderComment < ApplicationRecord
|
2011-05-07 21:55:24 +02:00
|
|
|
belongs_to :order
|
|
|
|
belongs_to :user
|
|
|
|
|
|
|
|
validates_presence_of :order_id, :user_id, :text
|
2011-06-19 20:47:27 +02:00
|
|
|
validates_length_of :text, :minimum => 3
|
2011-05-07 21:55:24 +02:00
|
|
|
end
|