mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-21 18:04:39 -05:00
7 lines
207 B
JavaScript
7 lines
207 B
JavaScript
export function up(db) {
|
|
db.prepare(/* sql */ `alter table "Tournament" add "tier" integer`).run();
|
|
db.prepare(
|
|
/* sql */ `alter table "TournamentOrganizationSeries" add "tierHistory" text`,
|
|
).run();
|
|
}
|