mirror of
https://github.com/samsonjs/immich.git
synced 2026-04-02 10:35:54 +00:00
13 lines
292 B
SQL
13 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
|