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

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