github.com/status-im/status-go@v1.1.0/services/wallet/collectibles/db_utils.go (about) 1 package collectibles 2 3 func insertStatement(allowUpdate bool) string { 4 if allowUpdate { 5 return `INSERT OR REPLACE` 6 } 7 return `INSERT OR IGNORE` 8 }