Fix keypair assignment in a migration script

This commit is contained in:
Akihiko Odaki 2018-03-27 12:18:22 +09:00
parent 396bb5821e
commit 629e19603e
1 changed files with 1 additions and 3 deletions

View File

@ -6,9 +6,7 @@ const updates = [];
User.find({}).each(function(user) { User.find({}).each(function(user) {
updates.push(User.update({ _id: user._id }, { updates.push(User.update({ _id: user._id }, {
$set: { $set: {
account: { 'account.keypair': generate(),
keypair: generate(),
}
} }
})); }));
}).then(function () { }).then(function () {