mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-25 15:56:19 -05:00
8 lines
168 B
JavaScript
8 lines
168 B
JavaScript
export function up(db) {
|
|
db.transaction(() => {
|
|
db.prepare(
|
|
/* sql */ `alter table "ScrimPost" add "isScheduledForFuture" integer default 1`,
|
|
).run();
|
|
})();
|
|
}
|