mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-21 18:04:39 -05:00
Add an index to speed up tournament team page
This commit is contained in:
parent
0f5389525b
commit
62808206c1
11
migrations/104-tournament-match-opponent-indexes.js
Normal file
11
migrations/104-tournament-match-opponent-indexes.js
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
export function up(db) {
|
||||
db.transaction(() => {
|
||||
db.prepare(
|
||||
/* sql */ `create index idx_tournament_match_opponent_one_id on "TournamentMatch"("opponentOne" ->> '$.id')`,
|
||||
).run();
|
||||
|
||||
db.prepare(
|
||||
/* sql */ `create index idx_tournament_match_opponent_two_id on "TournamentMatch"("opponentTwo" ->> '$.id')`,
|
||||
).run();
|
||||
})();
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user