Guest User

Untitled

a guest
May 24th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. class PokerSiteImage < ActiveRecord::Base
  2. belongs_to :poker_site
  3. has_attachment :content_type => :image,
  4. :storage => :file_system,
  5. :max_size => 1.megabytes,
  6. :thumbnails => {:small => '80x80'},
  7. :path_prefix => 'public/resources/poker_site_images'
  8.  
  9. validates_as_attachment
  10. end
Add Comment
Please, Sign In to add comment