mirror of
https://github.com/immich-app/immich.git
synced 2025-12-24 17:24:56 +03:00
28 lines
413 B
SQL
28 lines
413 B
SQL
-- NOTE: This file is auto generated by ./sql-generator
|
|
|
|
-- TrashRepository.restore
|
|
update "asset"
|
|
set
|
|
"status" = $1,
|
|
"deletedAt" = $2
|
|
where
|
|
"ownerId" = $3
|
|
and "status" = $4
|
|
|
|
-- TrashRepository.empty
|
|
update "asset"
|
|
set
|
|
"status" = $1
|
|
where
|
|
"ownerId" = $2
|
|
and "status" = $3
|
|
|
|
-- TrashRepository.restoreAll
|
|
update "asset"
|
|
set
|
|
"status" = $1,
|
|
"deletedAt" = $2
|
|
where
|
|
"status" = $3
|
|
and "id" in ($4)
|