2012-09-17 13:36:40 +00:00
|
|
|
class Location
|
2012-11-07 17:26:33 +00:00
|
|
|
include Mongoid::Document
|
|
|
|
include Mongoid::Timestamps
|
2012-09-17 13:36:40 +00:00
|
|
|
|
2012-11-07 17:26:33 +00:00
|
|
|
mount_uploader :file, GprsUploader
|
2012-09-17 13:36:40 +00:00
|
|
|
|
2012-11-07 17:26:33 +00:00
|
|
|
field :name
|
|
|
|
field :description
|
|
|
|
field :longitude, type: Float
|
|
|
|
field :latitude, type: Float
|
|
|
|
end
|