feat: 支持评分字段的导入

This commit is contained in:
richarjiang
2026-06-07 09:50:03 +08:00
parent e0b88e68e9
commit 588b6fbc77
8 changed files with 193 additions and 24 deletions

View File

@@ -23,6 +23,8 @@ model Level {
hint1 String?
hint2 String?
hint3 String?
difficultyScore Int? @map("difficulty_score") @db.TinyInt
funScore Int? @map("fun_score") @db.TinyInt
sortKey String @default("a0") @map("sort_key") @db.VarChar(64)
sortOrder Int @default(0) @map("sort_order")
createdAt DateTime @default(now()) @map("created_at")