mirror of
https://github.com/immich-app/immich.git
synced 2025-06-04 14:14:23 -04:00
26 lines
1007 B
TypeScript
26 lines
1007 B
TypeScript
import { DatabaseExtension } from 'src/interfaces/database.interface';
|
|
import { ConfigRepository } from 'src/repositories/config.repository';
|
|
import { MigrationInterface, QueryRunner } from 'typeorm';
|
|
|
|
const vectorExtension = new ConfigRepository().getEnv().database.vectorExtension;
|
|
|
|
export class AddCLIPEmbeddingIndex1700713994428 implements MigrationInterface {
|
|
name = 'AddCLIPEmbeddingIndex1700713994428';
|
|
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
if (vectorExtension === DatabaseExtension.VECTORS) {
|
|
await queryRunner.query(`SET vectors.pgvector_compatibility=on`);
|
|
}
|
|
await queryRunner.query(`SET search_path TO "$user", public, vectors`);
|
|
|
|
await queryRunner.query(`
|
|
CREATE INDEX IF NOT EXISTS clip_index ON smart_search
|
|
USING hnsw (embedding vector_cosine_ops)
|
|
WITH (ef_construction = 300, m = 16)`);
|
|
}
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`DROP INDEX IF EXISTS clip_index`);
|
|
}
|
|
}
|