index.js 214 字节
Newer Older
M
MicroMilo 已提交
1 2 3 4 5 6 7
'use strict';
exports.main = async (event, context) => {
	const db = uniCloud.database()
	const collection = db.collection('mustgo-verify-code')
	const res = await collection.remove()
	console.log('remove all')
};