mirror of
https://github.com/immich-app/immich.git
synced 2026-05-18 03:10:24 +03:00
15 lines
422 B
TypeScript
15 lines
422 B
TypeScript
import { Column, CreateDateColumn, Generated, Table } from '@immich/sql-tools';
|
|
import { PrimaryGeneratedUuidV7Column } from 'src/decorators';
|
|
|
|
@Table('asset_ocr_audit')
|
|
export class AssetOcrAuditTable {
|
|
@PrimaryGeneratedUuidV7Column()
|
|
id!: Generated<string>;
|
|
|
|
@Column({ type: 'uuid', index: true })
|
|
assetId!: string;
|
|
|
|
@CreateDateColumn({ default: () => 'clock_timestamp()', index: true })
|
|
deletedAt!: Date;
|
|
}
|