mirror of
https://github.com/immich-app/immich.git
synced 2026-03-23 06:19:11 +03:00
18 lines
504 B
TypeScript
18 lines
504 B
TypeScript
import { Column, CreateDateColumn, Generated, Table, Timestamp } from '@immich/sql-tools';
|
|
import { PrimaryGeneratedUuidV7Column } from 'src/decorators';
|
|
|
|
@Table('asset_audit')
|
|
export class AssetAuditTable {
|
|
@PrimaryGeneratedUuidV7Column()
|
|
id!: Generated<string>;
|
|
|
|
@Column({ type: 'uuid', index: true })
|
|
assetId!: string;
|
|
|
|
@Column({ type: 'uuid', index: true })
|
|
ownerId!: string;
|
|
|
|
@CreateDateColumn({ default: () => 'clock_timestamp()', index: true })
|
|
deletedAt!: Generated<Timestamp>;
|
|
}
|