mirror of
https://github.com/immich-app/immich.git
synced 2026-03-25 11:08:56 +03:00
21 lines
733 B
TypeScript
21 lines
733 B
TypeScript
import { AssetTable } from 'src/schema/tables/asset.table';
|
|
import { Column, ForeignKeyColumn, Table, Timestamp } from 'src/sql-tools';
|
|
|
|
@Table('asset_job_status')
|
|
export class AssetJobStatusTable {
|
|
@ForeignKeyColumn(() => AssetTable, { onDelete: 'CASCADE', onUpdate: 'CASCADE', primary: true })
|
|
assetId!: string;
|
|
|
|
@Column({ type: 'timestamp with time zone', nullable: true })
|
|
facesRecognizedAt!: Timestamp | null;
|
|
|
|
@Column({ type: 'timestamp with time zone', nullable: true })
|
|
metadataExtractedAt!: Timestamp | null;
|
|
|
|
@Column({ type: 'timestamp with time zone', nullable: true })
|
|
duplicatesDetectedAt!: Timestamp | null;
|
|
|
|
@Column({ type: 'timestamp with time zone', nullable: true })
|
|
ocrAt!: Timestamp | null;
|
|
}
|