Mongoid fixed uuid field
Create fixed UUID v.1 field for mongoid > 3 models
Add this line to your application’s Gemfile:
gem 'mongoid-uuid'
And then execute:
$ bundle
Or install it yourself as:
$ gem install mongoid-uuid
require 'mongoid'
require 'mongoid/uuid'
class Model
include Mongoid::Document
include Mongoid::Uuid
end
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)