diff options
| -rw-r--r-- | backend/schema.prisma | 2 | ||||
| -rw-r--r-- | scripts/dancerush/README.md | 4 |
2 files changed, 3 insertions, 3 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]) diff --git a/scripts/dancerush/README.md b/scripts/dancerush/README.md index 02ae7c3..d80b390 100644 --- a/scripts/dancerush/README.md +++ b/scripts/dancerush/README.md @@ -2,6 +2,6 @@ Versions: - DANCERUSH STARDOM -**DANCERUSH only stores a record of your last 30 plays**. Anything older than that will not have date data and can only be retrieved via looking at your best scores. +Score Page: https://p.eagate.573.jp/game/dan/1st/playdata/entrance.html#play_hist -## `generate_dancerush_score_json.py` +**DANCERUSH only stores a record of your last 30 plays**. Anything older than that will not have date data and can only be retrieved via looking at your best scores. |
