sendou.ink/migrations/098-tournament-match-game-result-indexes.js
2025-10-13 18:46:56 +03:00

8 lines
203 B
JavaScript

export function up(db) {
db.transaction(() => {
db.prepare(
/* sql */ `create index idx_tmgrp_tournament_team_id on "TournamentMatchGameResultParticipant"("tournamentTeamId")`,
).run();
})();
}