mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-25 15:56:19 -05:00
* Initial * Fixes * Fix types * Unit tests * Clarify which discord * progression selector tweaks * Adjust input UI * Done
8 lines
161 B
JavaScript
8 lines
161 B
JavaScript
export function up(db) {
|
|
db.transaction(() => {
|
|
db.prepare(
|
|
/* sql */ `alter table "TournamentTeam" add "startingBracketIdx" integer`,
|
|
).run();
|
|
})();
|
|
}
|