mirror of
https://github.com/immich-app/immich.git
synced 2025-11-14 10:33:15 -05:00
24 lines
800 B
TypeScript
24 lines
800 B
TypeScript
import { AssetTable } from 'src/schema/tables/asset.table';
|
|
import { Column, ForeignKeyColumn, Table } 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!: Date | null;
|
|
|
|
@Column({ type: 'timestamp with time zone', nullable: true })
|
|
metadataExtractedAt!: Date | null;
|
|
|
|
@Column({ type: 'timestamp with time zone', nullable: true })
|
|
duplicatesDetectedAt!: Date | null;
|
|
|
|
@Column({ type: 'timestamp with time zone', nullable: true })
|
|
previewAt!: Date | null;
|
|
|
|
@Column({ type: 'timestamp with time zone', nullable: true })
|
|
thumbnailAt!: Date | null;
|
|
}
|