mirror of
https://github.com/immich-app/immich.git
synced 2026-01-20 02:46:06 -05:00
14 lines
292 B
SQL
14 lines
292 B
SQL
-- NOTE: This file is auto generated by ./sql-generator
|
|
|
|
-- SharedLinkAssetRepository.copySharedLinks
|
|
insert into
|
|
"shared_link_asset"
|
|
select
|
|
$1 as "assetId",
|
|
"shared_link_asset"."sharedLinkId"
|
|
from
|
|
"shared_link_asset"
|
|
where
|
|
"shared_link_asset"."assetId" = $2
|
|
on conflict do nothing
|