mirror of
https://github.com/immich-app/immich.git
synced 2025-12-01 09:49:53 +09:00
18 lines
503 B
TypeScript
18 lines
503 B
TypeScript
import { PrimaryGeneratedUuidV7Column } from 'src/decorators';
|
|
import { Column, CreateDateColumn, Generated, Table, Timestamp } from 'src/sql-tools';
|
|
|
|
@Table('stacks_audit')
|
|
export class StackAuditTable {
|
|
@PrimaryGeneratedUuidV7Column()
|
|
id!: Generated<string>;
|
|
|
|
@Column({ type: 'uuid' })
|
|
stackId!: string;
|
|
|
|
@Column({ type: 'uuid' })
|
|
userId!: string;
|
|
|
|
@CreateDateColumn({ default: () => 'clock_timestamp()', indexName: 'IDX_stacks_audit_deleted_at' })
|
|
deletedAt!: Generated<Timestamp>;
|
|
}
|