mirror of
https://github.com/immich-app/immich
synced 2026-08-29 13:15:45 +00:00
19 lines
288 B
SQL
19 lines
288 B
SQL
-- NOTE: This file is auto generated by ./sql-generator
|
|
|
|
-- AssetEditRepository.replaceAll
|
|
begin
|
|
delete from "asset_edit"
|
|
where
|
|
"assetId" = $1
|
|
rollback
|
|
|
|
-- AssetEditRepository.getAll
|
|
select
|
|
"action",
|
|
"parameters"
|
|
from
|
|
"asset_edit"
|
|
where
|
|
"assetId" = $1
|
|
order by
|
|
"sequence" asc
|