mirror of
https://github.com/immich-app/immich.git
synced 2025-11-15 11:03:20 -05:00
25 lines
570 B
TypeScript
25 lines
570 B
TypeScript
import { PathType } from 'src/enum';
|
|
import { Column, Entity, PrimaryGeneratedColumn, Unique } from 'typeorm';
|
|
|
|
@Entity('move_history')
|
|
// path lock (per entity)
|
|
@Unique('UQ_entityId_pathType', ['entityId', 'pathType'])
|
|
// new path lock (global)
|
|
@Unique('UQ_newPath', ['newPath'])
|
|
export class MoveEntity {
|
|
@PrimaryGeneratedColumn('uuid')
|
|
id!: string;
|
|
|
|
@Column({ type: 'varchar' })
|
|
entityId!: string;
|
|
|
|
@Column({ type: 'varchar' })
|
|
pathType!: PathType;
|
|
|
|
@Column({ type: 'varchar' })
|
|
oldPath!: string;
|
|
|
|
@Column({ type: 'varchar' })
|
|
newPath!: string;
|
|
}
|