sendou.ink/migrations/123-splatoon-rotation.js
2026-03-11 20:18:44 +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();
})();
}