Skip to content

Instantly share code, notes, and snippets.

@mosufy
Created June 5, 2021 01:43
Show Gist options
  • Save mosufy/267e114098ec56727a10dd4ce6ca4f92 to your computer and use it in GitHub Desktop.
Save mosufy/267e114098ec56727a10dd4ce6ca4f92 to your computer and use it in GitHub Desktop.
export const insertUser = async (params) => {
const userId = await db.insert('username,email,password')
->values(params)
->table('users');
return userId;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment