Skip to content
Snippets Groups Projects
Commit dc53f52c authored by syuilo's avatar syuilo
Browse files

Fix bug

parent 4da2439d
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment