0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-28 00:59:18 -05:00

chore: sql sync (#15370)

* chore: sql sync

* chore: sql sync
This commit is contained in:
Alex 2025-01-15 13:55:29 -06:00 committed by GitHub
parent 93e2545275
commit 7d087371b5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -77,3 +77,9 @@ from
where
"memoriesId" = $1
and "assetsId" in ($2)
-- MemoryRepository.addAssetIds
insert into
"memories_assets_assets" ("memoriesId", "assetsId")
values
($1, $2)