sendou.ink/scripts/fix-tournaments.ts
2024-01-30 17:09:41 +02:00

12 lines
249 B
TypeScript

/* eslint-disable no-console */
import "dotenv/config";
import { sql } from "~/db/sql";
sql
.prepare(
`update "TournamentStage" set "name" = 'Main bracket' where "name" = 'Elimination stage'`,
)
.run();
console.log(`Fixed tournaments`);