status-go/services/wallet/collectibles/db_utils.go

9 lines
149 B
Go

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