Guest User

Untitled

a guest
Apr 26th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. class User < ActiveRecord::Base
  2. attr_readonly :properties_count
  3. has_many :properties, :as => :owner
  4. ...
  5. end
  6.  
  7. class Property < ActiveRecord::Base
  8. ...
  9. belongs_to :owner, :polymorphic => true, :counter_cache => true
  10. ...
  11. end
Add Comment
Please, Sign In to add comment