#primary_key ⇒ Symbol | String
::Mongoid assumes that the field used to hold the primary key of the association is id.
You can override this and explicitly specify the primary key with the :primary_key option.
# File 'lib/mongoid/association/options.rb', line 77
def primary_key @primary_key ||= @options[:primary_key] ? @options[:primary_key].to_s : Relatable::PRIMARY_KEY_DEFAULT end