mirror of
https://github.com/samsonjs/immich.git
synced 2026-03-25 09:15:56 +00:00
27 lines
413 B
SQL
27 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)
|