Guest User

Untitled

a guest
May 25th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. class Document < ActiveRecord::Base
  2. acts_as_paranoid
  3. belongs_to :upload
  4. belongs_to :user
  5.  
  6. ## i'd like to define the Upload.has_attachment here so that I can have many different things stored in a single uploads table
  7. ## i couldn't find a way to do it. like in Document, I'd like to have pdfs and word documents and not generate thumbnails
  8. end
Add Comment
Please, Sign In to add comment