Skip to content

Instantly share code, notes, and snippets.

@kernow
Created November 19, 2010 21:40
Show Gist options
  • Save kernow/707239 to your computer and use it in GitHub Desktop.
Save kernow/707239 to your computer and use it in GitHub Desktop.
mongoid key issue
class Car
include Mongoid::Document
field :name
field :colour
key :name
end
c1 = Car.new :name => 'bob', :colour => 'red'
c1.save # returns true
c2 = Car.new :name => 'bob', :colour => 'blue'
c2.save # returns true
Car.all.count # returns 1
Car.first.name # returns 'bob'
Car.first.colour # returns 'red'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment