habitica/migrations/20131114_migrate_websites_to_blurb.js

8 lines
324 B
JavaScript
Raw Normal View History

2013-11-14 06:57:07 +00:00
// 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': ''}
})
})