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