mirror of
https://github.com/immich-app/immich.git
synced 2025-01-10 13:56:47 +01:00
d2807b8d6a
* feat: admin repair orphans tool * chore: open api * fix: include upload folder * fix: bugs * feat: empty placeholder * fix: checks * feat: move buttons to top of page * feat: styling and clipboard * styling * better clicking hitbox * fix: show title on hover * feat: download report * restrict file access to immich related files * Add description --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com> Co-authored-by: Daniel Dietzler <mail@ddietzler.dev>
41 lines
894 B
TypeScript
41 lines
894 B
TypeScript
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;
|
|
}
|
|
|
|
export enum AssetPathType {
|
|
ORIGINAL = 'original',
|
|
JPEG_THUMBNAIL = 'jpeg_thumbnail',
|
|
WEBP_THUMBNAIL = 'webp_thumbnail',
|
|
ENCODED_VIDEO = 'encoded_video',
|
|
SIDECAR = 'sidecar',
|
|
}
|
|
|
|
export enum PersonPathType {
|
|
FACE = 'face',
|
|
}
|
|
|
|
export enum UserPathType {
|
|
PROFILE = 'profile',
|
|
}
|
|
|
|
export type PathType = AssetPathType | PersonPathType | UserPathType;
|