UNPKG

@ghini/kit

Version:

js practical tools to assist efficient development

8 lines (7 loc) 281 B
export { truncate }; async function truncate(pg, table) { const [err, res] = await pg.query(`TRUNCATE TABLE ${table} RESTART IDENTITY;`); if (err) return console.error(`清空 ${table} 表失败:`, err.message); console.log(table + " 表已成功清空。"); }