2012-12-07 04:40:21 +00:00
|
|
|
class Location
|
|
|
|
include Mongoid::Document
|
|
|
|
include Mongoid::Timestamps
|
2013-07-08 09:34:32 +00:00
|
|
|
include OrbitCategory::Categorizable
|
2012-12-07 04:40:21 +00:00
|
|
|
|
|
|
|
mount_uploader :file, LocationUploader
|
|
|
|
|
|
|
|
field :name
|
|
|
|
field :description
|
|
|
|
field :longitude, type: Float
|
|
|
|
field :latitude, type: Float
|
|
|
|
end
|