module Symphonia class CommonFile < Attachment class_attribute :paperclip_options has_attached_file :attachment validates_attachment :attachment, presence: true, size: {in: 0..2.megabytes} do_not_validate_attachment_file_type :attachment end end