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