3 include DataMapper::Resource
5 IMAGE_EXTENSIONS = ['gif', 'jpg', 'jpeg', 'png', 'bmp']
7 property :id, Fixnum, :serial => true
8 property :filename, String
9 property :width, Fixnum, :default => 0, :nullable => false
10 property :height, Fixnum, :default => 0, :nullable => false
11 property :created_on, DateTime
13 property :content_type, String
14 property :thumbnail, String
15 property :size, Fixnum