mirror of
https://github.com/immich-app/immich.git
synced 2025-11-16 03:23:18 -05:00
28 lines
416 B
SQL
28 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)
|