mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
Added imageName as searchable text on database
This commit is contained in:
parent
83cbf51704
commit
e4c4b53fcd
2 changed files with 54 additions and 3 deletions
|
|
@ -74,7 +74,7 @@ export class ExifEntity {
|
|||
@JoinColumn({ name: 'assetId', referencedColumnName: 'id' })
|
||||
asset?: ExifEntity;
|
||||
|
||||
@Index("exif_text_searchable", { synchronize: false })
|
||||
@Index('exif_text_searchable', { synchronize: false })
|
||||
@Column({
|
||||
type: 'tsvector',
|
||||
generatedType: 'STORED',
|
||||
|
|
@ -83,9 +83,10 @@ export class ExifEntity {
|
|||
COALESCE(model, '') || ' ' ||
|
||||
COALESCE(orientation, '') || ' ' ||
|
||||
COALESCE("lensModel", '') || ' ' ||
|
||||
COALESCE("imageName", '') || ' ' ||
|
||||
COALESCE("city", '') || ' ' ||
|
||||
COALESCE("state", '') || ' ' ||
|
||||
COALESCE("country", ''))`
|
||||
COALESCE("country", ''))`,
|
||||
})
|
||||
exifTextSearchableColumn!: string
|
||||
exifTextSearchableColumn!: string;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue