mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-24 15:08:44 -05:00
8 lines
158 B
JavaScript
8 lines
158 B
JavaScript
export function up(db) {
|
|
db.transaction(() => {
|
|
db.prepare(
|
|
/* sql */ `alter table "TournamentMatch" add "chatCode" text`,
|
|
).run();
|
|
})();
|
|
}
|