This commit is contained in:
2025-04-03 22:15:54 +02:00
parent d00b5e28b6
commit d60d5fe5af
8 changed files with 520 additions and 14 deletions

View File

@@ -107,8 +107,5 @@ export async function insertGameHistory(entries: any[]) {
return processGameEntry(id, game_num, entry)
})
await db.insert(player_games).values(playerGameRows).onConflictDoUpdate({
target: player_games.gameNum,
set: {},
})
await db.insert(player_games).values(playerGameRows).onConflictDoNothing()
}