class Booking
include Mongoid::Document
include Mongoid::Timestamps
field :capacity, type: Integer
field :appointment, type: Array
field :date, type:Date
embeds_many :appointments
end
class Appointment
include Mongoid::Document
field :name, type: String
field :mobile, type: String
embedded_in :booking
end