9 lines
173 B
Ruby
9 lines
173 B
Ruby
|
class TicketQueryResponse
|
||
|
include Mongoid::Document
|
||
|
include Mongoid::Timestamps
|
||
|
|
||
|
field :response
|
||
|
field :response_by, type: BSON::ObjectId
|
||
|
|
||
|
belongs_to :ticket_query
|
||
|
end
|