mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-25 15:56:19 -05:00
6 lines
132 B
JavaScript
6 lines
132 B
JavaScript
export function up(db) {
|
|
db.prepare(
|
|
/* sql */ `create index group_match_reported_at on "GroupMatch"("reportedAt")`,
|
|
).run();
|
|
}
|