mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-27 14:04:01 -05:00
6 lines
124 B
JavaScript
6 lines
124 B
JavaScript
export function up(db) {
|
|
db.prepare(
|
|
/* sql */ `alter table "AllTeam" add column "mapModePreferences" text`,
|
|
).run();
|
|
}
|