This commit is contained in:
syuilo 2017-11-07 21:12:08 +09:00
parent a85d5ac4bb
commit 71b1de8367

View file

@ -17,12 +17,12 @@ const migrate = async (doc) => {
async function main() {
let i = 0;
const count = await db.get('drive_files').count({});
const count = await DriveFile.count({});
const iterate = async () => {
if (i == count) return true;
console.log(`${i} / ${count}`);
const doc = (await db.get('drive_files').find({}, { limit: 1, skip: i }))[0]
const doc = (await DriveFile.find({}, { limit: 1, skip: i }))[0]
const res = await migrate(doc);
if (!res) {
return false;