Skip to content

Instantly share code, notes, and snippets.

@Talleyran
Created October 30, 2011 11:01
Show Gist options
  • Save Talleyran/1325785 to your computer and use it in GitHub Desktop.
Save Talleyran/1325785 to your computer and use it in GitHub Desktop.
модель LayersObject
class LayersObject
include Mongoid::Document
include Mongoid::Timestamps
field :geom_id, type: Integer
field :geom_ids, type: Array
embedded_in :layer
embeds_many :fields_objects
def prop k
fields_objects.where( key: k ).first.value
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment