12 lines
236 B
Ruby
12 lines
236 B
Ruby
|
class AlbumPic
|
||
|
include Mongoid::Document
|
||
|
store_in :album_pics
|
||
|
|
||
|
key :album_id, Integer
|
||
|
key :small, String
|
||
|
key :medium, String
|
||
|
key :large, String
|
||
|
key :extralarge, String
|
||
|
key :mega, String
|
||
|
end
|