image.rb 437 Bytes
module Kanjai
  class Image < ActiveRecord::Base
    belongs_to :object, polymorphic: true

#    has_attached_file :image,
#                      :styles => {:mini => '200x200>'},
#                      :path => ":object_type/:object_id/images/:id/:style/:basename.:extension",
#                      :s3_permissions => :public_read,
#                      :url => ':s3_domain_url'


    default_scope { order('created_at') }

  end
end