Guest User

Untitled

a guest
Jul 17th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. # single collection inheritance
  2. # all will be stored in the Person collection in the db
  3.  
  4. class Person
  5. include MongoMapper::Document
  6. end
  7.  
  8. class Registree < Person
  9. key :visitor, Boolean
  10. scope :vistors, :visitor => true
  11. end
Add Comment
Please, Sign In to add comment