Guest User

Untitled

a guest
Jul 22nd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. class AddictPhoto
  2. include Mongoid::Document
  3.  
  4. embedded_in :addict, :inverse_of => :addict_photo
  5. mount_uploader :image, AddictUploader
  6.  
  7. field :right, :type => Boolean
  8. field :left, :type => Boolean
  9. field :up, :type => Boolean
  10. field :down, :type => Boolean
  11. field :size, :type => Integer
  12.  
  13. end
Add Comment
Please, Sign In to add comment