forked from saurabh/orbit4-5
9 lines
151 B
Ruby
9 lines
151 B
Ruby
|
class GroupPostComment
|
||
|
include Mongoid::Document
|
||
|
include Mongoid::Timestamps
|
||
|
|
||
|
field :comment
|
||
|
|
||
|
belongs_to :user
|
||
|
belongs_to :group_post
|
||
|
end
|