Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. class Property < ActiveRecord::Base
  2. has_one :address
  3. end
  4.  
  5. class Address < ActiveRecord::Base
  6. has_many :properties
  7. accepts_nested_attributes_for :properties
  8. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement