mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-22 03:26:57 -05:00
7 lines
215 B
JavaScript
7 lines
215 B
JavaScript
export function up(db) {
|
|
db.transaction(() => {
|
|
db.prepare(/* sql */ `alter table "Group" add "chatCode" text`).run();
|
|
db.prepare(/* sql */ `alter table "GroupMatch" add "chatCode" text`).run();
|
|
})();
|
|
}
|