I'm trying to preserve the collections that do have the property set, but I need to define it for those that don't have it.
db.getCollection('accounts').update({
deposit: { "$exists": false } },
{ $set: {
deposit: { currency: '', address: '' }
}
})