From 943014fd38a3d784542f78cd4625d1ef2e220980 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Sat, 5 Jul 2025 01:25:00 -0700 Subject: fix: change timestamp to BigInt --- backend/schema.prisma | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backend') diff --git a/backend/schema.prisma b/backend/schema.prisma index 49dea07..467d59d 100644 --- a/backend/schema.prisma +++ b/backend/schema.prisma @@ -36,7 +36,7 @@ model Score { id Int @id @default(autoincrement()) gameInternalName String userId Int - timestamp Int //in UNIX milliseconds + timestamp BigInt //in UNIX milliseconds data Json game Game @relation(fields: [gameInternalName], references: [internalName]) user User @relation(fields: [userId], references: [id]) -- cgit v1.2.3