Fix error :(

main
furo 2021-11-07 20:17:32 +01:00
parent 94e3185d66
commit 8452edb3cc
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ export function processAllPoints() {
execMany([
`CREATE INDEX IF NOT EXISTS "idx_points_type" ON "points" ("type")`,
`CREATE INDEX IF NOT EXISTS "idx_points_rank" on "points" ("rank")`,
`CREATE INDEX IF NOT EXISTS "idx_points_name" on "points" ("player")`
`CREATE INDEX IF NOT EXISTS "idx_points_name" on "points" ("player")`,
`CREATE INDEX IF NOT EXISTS "idx_points_name" on "points" ("region", "type")`
])
}