mirror of
https://github.com/kaminari/kaminari.git
synced 2022-11-09 13:44:37 -05:00
26 lines
540 B
Ruby
26 lines
540 B
Ruby
class User
|
|
include ::Mongoid::Document
|
|
if Mongoid::VERSION > '4.0.0'
|
|
include Mongoid::Attributes::Dynamic
|
|
end
|
|
|
|
field :name, :type => String
|
|
field :age, :type => Integer
|
|
end
|
|
|
|
class User::Address
|
|
include ::Mongoid::Document
|
|
end
|
|
|
|
class MongoMongoidExtensionDeveloper
|
|
include ::Mongoid::Document
|
|
field :salary, :type => Integer
|
|
embeds_many :frameworks
|
|
end
|
|
|
|
class Framework
|
|
include ::Mongoid::Document
|
|
field :name, :type => String
|
|
field :language, :type => String
|
|
embedded_in :mongo_mongoid_extension_developer
|
|
end
|