Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. CUSTOMER
  2. has_one :customer_address
  3.  
  4. CUSTOMER_ADDRESS
  5. belongs_to :customer
  6.  
  7. DESTINATION
  8. has_one :destination_address
  9.  
  10. DESTINATION_ADDRESS
  11. belongs_to :destination
  12.  
  13. CUSTOMER
  14. has_one :customer_address
  15. has_many :orders
  16.  
  17. CUSTOMER_ADDRESS
  18. belongs_to :customer
  19.  
  20. DESTINATION
  21. has_one :destination_address
  22.  
  23. DESTINATION_ADDRESS
  24. belongs_to :destination
  25.  
  26. ORDER
  27. belongs_to :customer
  28. has_one :customer_address, through: :customer
  29. has_one :destination_address, through :destination
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement