mirror of
https://github.com/immich-app/immich.git
synced 2025-12-25 01:11:43 +03:00
28 lines
476 B
SQL
28 lines
476 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
|
|
"usersId",
|
|
"albumsId",
|
|
"role"
|
|
|
|
-- 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
|