orbit-basic/vendor/built_in_modules/ask/app/models/ask_reply.rb

12 lines
249 B
Ruby
Raw Normal View History

2013-05-27 09:29:59 +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
belongs_to :ask_question
end