Skip to content

Instantly share code, notes, and snippets.

@coline-carle
Created October 15, 2018 21:39
Show Gist options
  • Save coline-carle/667a0fedd53899ac0ef0febdb7326173 to your computer and use it in GitHub Desktop.
Save coline-carle/667a0fedd53899ac0ef0febdb7326173 to your computer and use it in GitHub Desktop.
func (db *DB) DeleteAllAchievementsAndCategoriesWithTransaction(tx Tx) error {
const sqlStatement = `
DELETE FROM achievements_categories
`
_, err := tx.Exec(sqlStatement)
return err
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment