|
class AskReply
|
|
include Mongoid::Document
|
|
include Mongoid::Timestamps
|
|
|
|
field :content, type: String
|
|
field :comment, type: String
|
|
field :status, type: String
|
|
field :send_email, type: Boolean, detault: false
|
|
field :depts, :type => Array
|
|
|
|
belongs_to :ask_question
|
|
end
|