mirror of
https://github.com/immich-app/immich.git
synced 2025-12-25 09:14:58 +03:00
24 lines
389 B
SQL
24 lines
389 B
SQL
-- NOTE: This file is auto generated by ./sql-generator
|
|
|
|
-- MoveRepository.getByEntity
|
|
select
|
|
*
|
|
from
|
|
"move_history"
|
|
where
|
|
"entityId" = $1
|
|
and "pathType" = $2
|
|
|
|
-- MoveRepository.delete
|
|
delete from "move_history"
|
|
where
|
|
"id" = $1
|
|
returning
|
|
*
|
|
|
|
-- MoveRepository.cleanMoveHistorySingle
|
|
delete from "move_history"
|
|
where
|
|
"move_history"."pathType" = 'original'
|
|
and "entityId" = $1
|