sendou.ink/migrations/039-tournament-match-chat-code.js
2024-02-29 21:35:46 +02:00

8 lines
158 B
JavaScript

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