2014-01-15 10:56:54 +00:00
|
|
|
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
|
2014-02-11 06:27:01 +00:00
|
|
|
field :depts, :type => Array
|
2014-01-15 10:56:54 +00:00
|
|
|
|
|
|
|
belongs_to :ask_question
|
|
|
|
end
|