mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
Fix keypair assignment in a migration script
This commit is contained in:
parent
27ca691543
commit
3eb659b649
1 changed files with 1 additions and 3 deletions
|
@ -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 () {
|
||||||
|
|
Loading…
Add table
Reference in a new issue