mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
18 lines
470 B
SQL
18 lines
470 B
SQL
-- NOTE: This file is auto generated by ./sql-generator
|
|
|
|
-- MoveRepository.getByEntity
|
|
SELECT
|
|
"MoveEntity"."id" AS "MoveEntity_id",
|
|
"MoveEntity"."entityId" AS "MoveEntity_entityId",
|
|
"MoveEntity"."pathType" AS "MoveEntity_pathType",
|
|
"MoveEntity"."oldPath" AS "MoveEntity_oldPath",
|
|
"MoveEntity"."newPath" AS "MoveEntity_newPath"
|
|
FROM
|
|
"move_history" "MoveEntity"
|
|
WHERE
|
|
(
|
|
("MoveEntity"."entityId" = $1)
|
|
AND ("MoveEntity"."pathType" = $2)
|
|
)
|
|
LIMIT
|
|
1
|