rm console.log

This commit is contained in:
juzeon 2021-07-31 16:23:15 +08:00
父節點 8fc2880a41
當前提交 660dfb10fd

查看文件

@ -27,7 +27,7 @@ export class PostModel {
}
async setStatusByPostId(id: number, status: TPostStatus) {
console.log(await db.query('update posts set status=? where id=?', [status, id]))
await db.query('update posts set status=? where id=?', [status, id])
}
}