sendou.ink/migrations/123-splatoon-rotation.js
Kalle fef1ffc955
Design refresh + a bunch of stuff (#2864)
Co-authored-by: hfcRed <hfcred@gmx.net>
2026-03-19 17:51:42 +02:00

17 lines
396 B
JavaScript

export function up(db) {
db.transaction(() => {
db.prepare(
/* sql */ `
create table "SplatoonRotation" (
"id" integer primary key,
"type" text not null,
"mode" text not null,
"stageId1" integer not null,
"stageId2" integer not null,
"startTime" integer not null,
"endTime" integer not null
) strict`,
).run();
})();
}