- Това е типична връзка "един към много". Така че в случай на потребителя можете да имате следната схема:
//User
{
//_id: ObjectId - this one is unique and inserted to every document by default
profile: String,
...
}
//Activity
{
description: String,
...,
userId: String, // referecing the user _id, e.g. "56a5eccb2258799919dc2c40"
}
- Ако искате да актуализирате много документи за активност:
db.activities.update({ userId: '56a5eccb2258799919dc2c40' }, {
$set: {
description: 'new description'
}
},
{
multi: true //means update all matching docs
});