mirror of
https://github.com/immich-app/immich.git
synced 2026-02-14 04:47:57 +03:00
20 lines
557 B
TypeScript
20 lines
557 B
TypeScript
import { Column, ColumnIndex, CreateDateColumn, PrimaryGeneratedColumn, Table } from 'src/sql-tools';
|
|
|
|
@Table('partners_audit')
|
|
export class PartnerAuditTable {
|
|
@PrimaryGeneratedColumn({ type: 'v7' })
|
|
id!: string;
|
|
|
|
@ColumnIndex('IDX_partners_audit_shared_by_id')
|
|
@Column({ type: 'uuid' })
|
|
sharedById!: string;
|
|
|
|
@ColumnIndex('IDX_partners_audit_shared_with_id')
|
|
@Column({ type: 'uuid' })
|
|
sharedWithId!: string;
|
|
|
|
@ColumnIndex('IDX_partners_audit_deleted_at')
|
|
@CreateDateColumn({ default: () => 'clock_timestamp()' })
|
|
deletedAt!: Date;
|
|
}
|