Guest User

Untitled

a guest
Jul 19th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. # coding: utf-8
  2.  
  3. class Street
  4. include Mongoid::Document
  5.  
  6. field :name
  7.  
  8. references_and_referenced_in_many :testrefc, :dependent => :nullify, :class => 'House', :foreign_key => 'testrefc_ids', :inverse_of => :testrefa
  9. references_and_referenced_in_many :testrefd, :dependent => :nullify, :class => 'House', :foreign_key => 'testrefd_ids', :inverse_of => :testrefb
  10. end
Add Comment
Please, Sign In to add comment