Sha256: 9b85c54eb83ecb8d06227f7521bf2e0340e67cfce42d4e2d59618d95e6371d58

Contents?: true

Size: 274 Bytes

Versions: 14

Compression:

Stored size: 274 Bytes

Contents

# frozen_string_literal: true
# encoding: utf-8

class Profile
  include Mongoid::Document
  field :name, type: String

  embeds_one :profile_image

  shard_key :name
end

class ProfileImage
  include Mongoid::Document
  field :url, type: String

  embedded_in :profile
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
mongoid-7.3.5 spec/support/models/profile.rb
mongoid-7.3.4 spec/support/models/profile.rb
mongoid-7.2.6 spec/support/models/profile.rb
mongoid-7.3.3 spec/support/models/profile.rb
mongoid-7.3.2 spec/support/models/profile.rb
mongoid-7.2.5 spec/support/models/profile.rb
mongoid-7.2.4 spec/support/models/profile.rb
mongoid-7.3.1 spec/support/models/profile.rb
mongoid-7.3.0 spec/support/models/profile.rb
mongoid-7.2.3 spec/support/models/profile.rb
mongoid-7.2.2 spec/support/models/profile.rb
mongoid-7.2.1 spec/support/models/profile.rb
mongoid-7.2.0 spec/support/models/profile.rb
mongoid-7.2.0.rc1 spec/support/models/profile.rb