1
0
mirror of https://github.com/bitwarden/server synced 2026-01-03 17:14:00 +00:00

Grant table for identity persisted grants

This commit is contained in:
Kyle Spearrin
2017-01-11 22:43:03 -05:00
parent 2b7f6e5a6c
commit 9749d1e3a8
9 changed files with 168 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
CREATE PROCEDURE [dbo].[Grant_ReadByKey]
@Key NVARCHAR(200)
AS
BEGIN
SET NOCOUNT ON
SELECT
*
FROM
[dbo].[GrantView]
WHERE
[Key] = @Key
END