From 7fe146f97ddd3f5a8d0c1a996a73cb296c28b9cc Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Mon, 7 Jul 2025 01:07:34 -0700 Subject: implement score deletion --- backend/schema.prisma | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'backend/schema.prisma') diff --git a/backend/schema.prisma b/backend/schema.prisma index a613628..f51093b 100644 --- a/backend/schema.prisma +++ b/backend/schema.prisma @@ -34,9 +34,9 @@ model Game { } model Score { - id Int @id @default(autoincrement()) + id Int @id @default(autoincrement()) // This is the numerical score number (global) gameInternalName String - chartId String + chartId String // Refers to the unqiue chart identifier userId Int timestamp BigInt // in UNIX milliseconds data Json -- cgit v1.2.3