Each paperclip attachment has to have a different attachment name.
For instance:
class User
has_attached_file :avatar
has_attached_file :resume
# etc.
end
Then you need the database fields in the users table avatar_file_name,
avatar_content_type, resume_file_name, resume_content_type, etc.
| Kennon Ballou
| Angry Turnip, Inc.