mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-21 18:04:39 -05:00
17 lines
396 B
JavaScript
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();
|
|
})();
|
|
}
|