mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 14:07:38 -07:00
Fix bug
This commit is contained in:
parent
7a10542335
commit
24e862770a
1 changed files with 2 additions and 2 deletions
|
@ -63,7 +63,7 @@ const migrate = async (doc) => {
|
|||
}
|
||||
|
||||
async function main() {
|
||||
const count = await db.get('users').count();
|
||||
const count = await User.count();
|
||||
|
||||
console.log(`there are ${count} users.`)
|
||||
|
||||
|
@ -74,7 +74,7 @@ async function main() {
|
|||
1,
|
||||
async (time) => {
|
||||
console.log(`${time} / ${idop}`)
|
||||
const docs = await db.get('users').find({}, { limit: dop, skip: time * dop })
|
||||
const docs = await User.find({}, { limit: dop, skip: time * dop })
|
||||
return Promise.all(docs.map(migrate))
|
||||
},
|
||||
idop
|
||||
|
|
Loading…
Reference in a new issue