mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-21 18:04:39 -05:00
10 lines
220 B
JavaScript
10 lines
220 B
JavaScript
export function up(db) {
|
|
db.transaction(() => {
|
|
db.prepare(
|
|
/* sql */ `
|
|
create index calendar_event_date_event_id_start_time on "CalendarEventDate"("eventId", "startTime" desc)
|
|
`,
|
|
).run();
|
|
})();
|
|
}
|