sendou.ink/migrations/102-tournament-result-div.js
Kalle 9fc30a7624
Some checks are pending
E2E Tests / e2e (push) Waiting to run
Tests and checks on push / run-checks-and-tests (push) Waiting to run
Updates translation progress / update-translation-progress-issue (push) Waiting to run
Many starting brackets standings (#2611)
2025-11-03 21:30:22 +02:00

6 lines
137 B
JavaScript

export function up(db) {
db.transaction(() => {
db.prepare(/* sql */ `alter table "TournamentResult" add "div" text`).run();
})();
}