forked from spen/seminar
8 lines
206 B
Ruby
8 lines
206 B
Ruby
|
class CustomAlbumCrop
|
||
|
include Mongoid::Document
|
||
|
field :crop_x, type: String
|
||
|
field :crop_y, type: String
|
||
|
field :crop_w, type: String
|
||
|
field :crop_h, type: String
|
||
|
belongs_to :custom_album_image
|
||
|
end
|