mirror of
https://github.com/immich-app/immich.git
synced 2025-01-10 13:56:47 +01:00
20 lines
559 B
TypeScript
20 lines
559 B
TypeScript
import { Column, Entity, Index, JoinColumn, OneToOne, PrimaryColumn } from 'typeorm';
|
|
import { AssetEntity } from './asset.entity';
|
|
|
|
@Entity('smart_search', { synchronize: false })
|
|
export class SmartSearchEntity {
|
|
@OneToOne(() => AssetEntity, { onDelete: 'CASCADE', nullable: true })
|
|
@JoinColumn({ name: 'assetId', referencedColumnName: 'id' })
|
|
asset?: AssetEntity;
|
|
|
|
@PrimaryColumn()
|
|
assetId!: string;
|
|
|
|
@Index('clip_index', { synchronize: false })
|
|
@Column({
|
|
type: 'float4',
|
|
array: true,
|
|
select: false,
|
|
})
|
|
embedding!: number[];
|
|
}
|