Here is the code in my Model
include Mongoid::Document include Mongoid::Timestamps field :message, :type => String field :send_at, :type => DateTime <
Recent versions of Mongoid do handle multi-parameter attributes, you just have to include the module in your model:
include Mongoid::MultiParameterAttributes
Docs: http://mongoid.org/en/mongoid/docs/rails.html