Index the Postgres FTS column

This commit is contained in:
Alex Gleason 2024-05-21 16:29:36 -05:00
parent 00cfd0af68
commit 101a16bc12
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
import { Kysely } from 'kysely';
import { Conf } from '@/config.ts';
export async function up(db: Kysely<any>): Promise<void> {
if (['postgres:', 'postgresql:'].includes(Conf.databaseUrl.protocol!)) {
await db.schema
.createIndex('nostr_pgfts_gin_search_vec')
.ifNotExists()
.on('nostr_pgfts')
.using('gin')
.column('search_vec')
.execute();
}
}
export async function down(db: Kysely<any>): Promise<void> {
if (['postgres:', 'postgresql:'].includes(Conf.databaseUrl.protocol!)) {
await db.schema.dropIndex('nostr_pgfts_gin_search_vec').ifExists().execute();
}
}