mirror of
https://github.com/bitwarden/server
synced 2026-01-17 07:53:36 +00:00
reimport db after subvault => collection rename
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
CREATE PROCEDURE [dbo].[CollectionUserUserDetails_ReadByCollectionId]
|
||||
@CollectionId UNIQUEIDENTIFIER
|
||||
AS
|
||||
BEGIN
|
||||
SET NOCOUNT ON
|
||||
|
||||
SELECT
|
||||
*
|
||||
FROM
|
||||
[dbo].[CollectionUserUserDetailsView]
|
||||
WHERE
|
||||
[AccessAllCollections] = 1
|
||||
OR [CollectionId] = @CollectionId
|
||||
END
|
||||
Reference in New Issue
Block a user