ditto/packages/db/migrations/002_events_fts.ts
2025-02-16 00:14:41 -06:00

8 lines
266 B
TypeScript

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