mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 23:55:58 +09:00
19 lines
318 B
JavaScript
19 lines
318 B
JavaScript
|
db.users.find({}).forEach(function(user) {
|
||
|
print(user._id);
|
||
|
db.users.update({ _id: user._id }, {
|
||
|
$rename: {
|
||
|
bio: 'description'
|
||
|
},
|
||
|
$unset: {
|
||
|
location: '',
|
||
|
birthday: ''
|
||
|
},
|
||
|
$set: {
|
||
|
profile: {
|
||
|
location: user.location || null,
|
||
|
birthday: user.birthday || null
|
||
|
}
|
||
|
}
|
||
|
}, false, false);
|
||
|
});
|