mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-21 18:04:39 -05:00
11 lines
241 B
TypeScript
11 lines
241 B
TypeScript
import { sql } from "~/db/sql";
|
|
|
|
const stm = sql.prepare(/* sql */ `
|
|
delete from "TournamentMatchPickBanEvent"
|
|
where "matchId" = @matchId
|
|
`);
|
|
|
|
export function deleteMatchPickBanEvents(matchId: number) {
|
|
return stm.run({ matchId });
|
|
}
|