diaspora/app/models/photo.rb
2010-07-20 15:15:11 -07:00

9 lines
221 B
Ruby

class Photo < Post
require 'carrierwave/orm/mongomapper'
include MongoMapper::Document
mount_uploader :image, ImageUploader
key :collection_id, ObjectId
belongs_to :collection, :class_name => 'Collection'
end