12 lines
249 B
Ruby
12 lines
249 B
Ruby
|
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
|
||
|
|
||
|
belongs_to :ask_question
|
||
|
end
|