mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-26 01:09:02 -05:00
6 lines
138 B
JavaScript
6 lines
138 B
JavaScript
module.exports.up = function (db) {
|
|
db.prepare(
|
|
/* sql */ `alter table "User" add "plusSkippedForSeasonNth" integer`,
|
|
).run();
|
|
};
|