aboutsummaryrefslogtreecommitdiffstats
path: root/backend/schema.prisma
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2025-07-05 01:25:00 -0700
committerPinapelz <yukais@pinapelz.com>2025-07-05 01:28:37 -0700
commit943014fd38a3d784542f78cd4625d1ef2e220980 (patch)
tree24840c2e00d88273c33e110c92e413e6c750d5e7 /backend/schema.prisma
parent79f79acd5e9c19331ebcfa08096a48363c77a68b (diff)
fix: change timestamp to BigInt
Diffstat (limited to 'backend/schema.prisma')
-rw-r--r--backend/schema.prisma2
1 files changed, 1 insertions, 1 deletions
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])
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage