reported_image.rb 218 Bytes
class ReportedImage < ActiveRecord::Base
  belongs_to :abuse_report

  validates_presence_of :abuse_report

  has_attachment :content_type => :image,
    :storage     => :file_system,
    :max_size => 5.megabytes

end