Fix error :(

This commit is contained in:
furo 2021-11-07 20:17:32 +01:00
parent 94e3185d66
commit 8452edb3cc

View File

@ -199,7 +199,7 @@ export function processAllPoints() {
execMany([ execMany([
`CREATE INDEX IF NOT EXISTS "idx_points_type" ON "points" ("type")`, `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_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")` `CREATE INDEX IF NOT EXISTS "idx_points_name" on "points" ("region", "type")`
]) ])
} }