mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-25 07:32:19 -05:00
* Prepared maps works for RR * Refactor generateMatchesData * Refactor rounds * Initial prepare for SE/DE * Share maps between brackets * Todos * resetPreparedMaps * Bias SZ & reset prepared maps * Trimming initial + tests initial * Elimination trimming basic case * Include group id * Implemented all tests * TODOs * Better prepared maps submitted UX * Small CSS tweaks * Done * Remove TODO
11 lines
249 B
JavaScript
11 lines
249 B
JavaScript
export function up(db) {
|
|
db.transaction(() => {
|
|
db.prepare(
|
|
/* sql */ `alter table "Tournament" add "preparedMaps" text`,
|
|
).run();
|
|
db.prepare(
|
|
/* sql */ `alter table "Tournament" drop column "showMapListGenerator"`,
|
|
).run();
|
|
})();
|
|
}
|