Files
habitica/migrations/20131114_migrate_websites_to_blurb.js
2013-11-14 17:57:07 +11:00

8 lines
324 B
JavaScript

// Migrate all users websites to the profile blurb field
db.users.find({'profile.websites':{$exists: true}}).forEach(function(user){
db.users.update({_id: user._id}, {
$set: {"profile.blurb": user.profile.blurb + '\n * ' + user.profile.websites.join('\n * ')},
$unset: {'profile.websites': ''}
})
})