mirror of
https://github.com/immich-app/immich.git
synced 2025-12-04 12:15:20 -05:00
25 lines
576 B
TypeScript
25 lines
576 B
TypeScript
import { DatabaseAction, EntityType } from 'src/enum';
|
|
import { Column, CreateDateColumn, Generated, Index, PrimaryColumn, Table, Timestamp } from 'src/sql-tools';
|
|
|
|
@Table('audit')
|
|
@Index({ columns: ['ownerId', 'createdAt'] })
|
|
export class AuditTable {
|
|
@PrimaryColumn({ type: 'serial', synchronize: false })
|
|
id!: Generated<number>;
|
|
|
|
@Column()
|
|
entityType!: EntityType;
|
|
|
|
@Column({ type: 'uuid' })
|
|
entityId!: string;
|
|
|
|
@Column()
|
|
action!: DatabaseAction;
|
|
|
|
@Column({ type: 'uuid' })
|
|
ownerId!: string;
|
|
|
|
@CreateDateColumn()
|
|
createdAt!: Generated<Timestamp>;
|
|
}
|