Guest User

Untitled

a guest
Jul 20th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. class Answer
  2. include Mongoid::Document
  3. include Mongoid::Timestamps
  4.  
  5. field :au # answerer
  6. field :uiq # user in question, current shard key
  7. field :qt # question template
  8. field :res, :type => Integer # answer code
  9.  
  10. field :ncmt, :type => Integer # number of comments
  11.  
  12. references_many :comments # comments are not embedded (but probably they should be)
  13. end
  14.  
  15.  
  16. class Comment
  17. include Mongoid::Document
  18. include Mongoid::Timestamps
  19.  
  20. field :text
  21. field :is_new, :type => Integer, :default => 1
  22.  
  23. referenced_in :answer
  24. field :vk_user # comment poster
  25. end
Add Comment
Please, Sign In to add comment