mirror of
https://github.com/immich-app/immich.git
synced 2026-03-23 00:38:59 +03:00
* feat: getAssetEdits respond with edit IDs * chore: cleanup typings for edit API * chore: cleanup types with jason * fix: openapi sync * fix: factory
21 lines
296 B
SQL
21 lines
296 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
|
|
"id",
|
|
"action",
|
|
"parameters"
|
|
from
|
|
"asset_edit"
|
|
where
|
|
"assetId" = $1
|
|
order by
|
|
"sequence" asc
|