fix: memory generation (#25650)

This commit is contained in:
Jason Rasmussen
2026-01-28 16:51:24 -05:00
committed by GitHub
parent e81faa1dbf
commit 141be5cbc9
7 changed files with 68 additions and 20 deletions

View File

@@ -15,12 +15,6 @@ export class AssetJobStatusTable {
@Column({ type: 'timestamp with time zone', nullable: true })
duplicatesDetectedAt!: Timestamp | null;
@Column({ type: 'timestamp with time zone', nullable: true })
previewAt!: Timestamp | null;
@Column({ type: 'timestamp with time zone', nullable: true })
thumbnailAt!: Timestamp | null;
@Column({ type: 'timestamp with time zone', nullable: true })
ocrAt!: Timestamp | null;
}