10 lines
No EOL
208 B
Ruby
10 lines
No EOL
208 B
Ruby
class Cerfa < ActiveRecord::Base
|
|
belongs_to :dossier
|
|
|
|
mount_uploader :content, CerfaUploader
|
|
validates :content, :file_size => { :maximum => 3.megabytes.to_i }
|
|
|
|
def empty?
|
|
content.blank?
|
|
end
|
|
end |