mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
27 lines
416 B
SQL
27 lines
416 B
SQL
-- NOTE: This file is auto generated by ./sql-generator
|
|
|
|
-- TrashRepository.restore
|
|
update "assets"
|
|
set
|
|
"status" = $1,
|
|
"deletedAt" = $2
|
|
where
|
|
"ownerId" = $3
|
|
and "status" = $4
|
|
|
|
-- TrashRepository.empty
|
|
update "assets"
|
|
set
|
|
"status" = $1
|
|
where
|
|
"ownerId" = $2
|
|
and "status" = $3
|
|
|
|
-- TrashRepository.restoreAll
|
|
update "assets"
|
|
set
|
|
"status" = $1,
|
|
"deletedAt" = $2
|
|
where
|
|
"status" = $3
|
|
and "id" in ($4)
|