mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 03:19:46 +00:00
8 lines
253 B
TypeScript
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> {
|
|
}
|