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`
|
||
|
}
|