wblog/app/models/photo.rb

8 lines
129 B
Ruby
Raw Normal View History

2012-06-25 00:09:44 +08:00
class Photo
include Mongoid::Document
include Mongoid::Timestamps
field :image
mount_uploader :image, PhotoUploader
end