I don't understand the atomic method push of Mongoid.
I have this document:
class Campaign
include Mongoid::Document
field :messages, :type => Array # Array of hashes
end
And now in the console a play with it but messages it's not persisted. An example:
>> campaign = Campaign.last
=> #<Campaign _id: 4dc2b6617e296d53f000000d,...
>> data = {:from => 'user@example.com'}
=> {:from=>"user@example.com"}
>> campaign.push(:messages, data)
=> [{:from=>"user@example.com"}]
The log now says:
MONGODB blabla_development['campaigns'].update({"_id"=>BSON::ObjectId('4dc2b6617e296d53f000000d')}, {"$push"=>{:messages=>{:from=>"user@example.com"}}})
But if a query this document again, the messages field is nil:
>> campaign = Campaign.last
=> #<Campaign _id: 4dc2b6617e296d53f000000d,...
>> campaign.messages
=> nil
How can I persist this data?
Thanks