mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
15 lines
359 B
TypeScript
15 lines
359 B
TypeScript
|
|
import { AssetTable } from 'src/schema/tables/asset.table';
|
||
|
|
import { Column, ForeignKeyColumn, Table } from 'src/sql-tools';
|
||
|
|
|
||
|
|
@Table('ocr_search')
|
||
|
|
export class OcrSearchTable {
|
||
|
|
@ForeignKeyColumn(() => AssetTable, {
|
||
|
|
onDelete: 'CASCADE',
|
||
|
|
onUpdate: 'CASCADE',
|
||
|
|
primary: true,
|
||
|
|
})
|
||
|
|
assetId!: string;
|
||
|
|
|
||
|
|
@Column({ type: 'text' })
|
||
|
|
text!: string;
|
||
|
|
}
|