Fix bug
This commit is contained in:
		| @@ -17,12 +17,12 @@ const migrate = async (doc) => { | |||||||
| async function main() { | async function main() { | ||||||
| 	let i = 0; | 	let i = 0; | ||||||
|  |  | ||||||
| 	const count = await db.get('drive_files').count({}); | 	const count = await DriveFile.count({}); | ||||||
|  |  | ||||||
| 	const iterate = async () => { | 	const iterate = async () => { | ||||||
| 		if (i == count) return true; | 		if (i == count) return true; | ||||||
| 		console.log(`${i} / ${count}`); | 		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); | 		const res = await migrate(doc); | ||||||
| 		if (!res) { | 		if (!res) { | ||||||
| 			return false; | 			return false; | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 syuilo
					syuilo