mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 06:36:32 +00:00
9 lines
149 B
Go
9 lines
149 B
Go
|
package collectibles
|
||
|
|
||
|
func insertStatement(allowUpdate bool) string {
|
||
|
if allowUpdate {
|
||
|
return `INSERT OR REPLACE`
|
||
|
}
|
||
|
return `INSERT OR IGNORE`
|
||
|
}
|