Tournament specific usernames set by established org TO's

This commit is contained in:
Kalle
2026-08-07 11:57:23 +03:00
parent d59bb9c25b
commit 000eda055a
59 changed files with 642 additions and 40 deletions

View File

@@ -8,9 +8,7 @@ const MIGRATION_FOLDER = fileURLToPath(
const TEMPLATE = `import type { Kysely } from "kysely";
/** TODO: describe what this migration changes */
export async function up(db: Kysely<any>): Promise<void> {
// kysely does not wrap sqlite migrations in a transaction, so do it here
await db.transaction().execute(async (trx) => {
await trx.schema.alterTable("TODO").addColumn("TODO", "text").execute();
});