ditto/src/db/migrations/002_events_fts.ts
2024-09-11 11:08:33 -05:00

8 lines
253 B
TypeScript

import { Kysely } from 'kysely';
export async function up(_db: Kysely<any>): Promise<void> {
// This migration used to create an FTS table for SQLite, but SQLite support was removed.
}
export async function down(_db: Kysely<any>): Promise<void> {
}