2024-01-12 08:55:38 -03:00

9 lines
149 B
Go

package collectibles
func insertStatement(allowUpdate bool) string {
if allowUpdate {
return `INSERT OR REPLACE`
}
return `INSERT OR IGNORE`
}