Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. class WellIndex::Core
  2. include MongoMapper::Document
  3.  
  4. key :well_name
  5. key :surface_loc, Hash
  6. ensure_index [[:surface_loc, '2dsphere']]
  7. end
  8.  
  9. class WellIndex::Core
  10. include Mongoid::Document
  11.  
  12. field :well_name, type: String
  13. field :surface_loc, Array
  14. index({:surface_loc => '2dsphere'})
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement