mirror of
https://github.com/immich-app/immich.git
synced 2026-03-26 19:37:56 -04:00
18 lines
535 B
TypeScript
18 lines
535 B
TypeScript
import { PrimaryGeneratedUuidV7Column } from 'src/decorators';
|
|
import { Column, CreateDateColumn, Table } from 'src/sql-tools';
|
|
|
|
@Table('assets_audit')
|
|
export class AssetAuditTable {
|
|
@PrimaryGeneratedUuidV7Column()
|
|
id!: string;
|
|
|
|
@Column({ type: 'uuid', indexName: 'IDX_assets_audit_asset_id' })
|
|
assetId!: string;
|
|
|
|
@Column({ type: 'uuid', indexName: 'IDX_assets_audit_owner_id' })
|
|
ownerId!: string;
|
|
|
|
@CreateDateColumn({ default: () => 'clock_timestamp()', indexName: 'IDX_assets_audit_deleted_at' })
|
|
deletedAt!: Date;
|
|
}
|