Guest User

Untitled

a guest
Feb 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. # == Schema Information
  2. #
  3. # Table name: posts
  4. #
  5. # id :integer(11) not null, primary key
  6. # user_id :integer(11)
  7. # anonymous :boolean(1)
  8. # ...
  9. class Post < ActiveRecord::Base
  10. extend Anonymizer
  11.  
  12. belongs_to :user
  13. anonymize_method :user
  14. anonymize_attribute :user_id
  15. end
Add Comment
Please, Sign In to add comment