mirror of
https://github.com/immich-app/immich.git
synced 2025-12-31 17:20:35 -05:00
26 lines
444 B
SQL
26 lines
444 B
SQL
-- NOTE: This file is auto generated by ./sql-generator
|
|
|
|
-- AlbumUserRepository.create
|
|
insert into
|
|
"albums_shared_users_users" ("usersId", "albumsId")
|
|
values
|
|
($1, $2)
|
|
returning
|
|
*
|
|
|
|
-- AlbumUserRepository.update
|
|
update "albums_shared_users_users"
|
|
set
|
|
"role" = $1
|
|
where
|
|
"usersId" = $2
|
|
and "albumsId" = $3
|
|
returning
|
|
*
|
|
|
|
-- AlbumUserRepository.delete
|
|
delete from "albums_shared_users_users"
|
|
where
|
|
"usersId" = $1
|
|
and "albumsId" = $2
|