1
0
mirror of https://github.com/bitwarden/server synced 2026-01-05 10:03:23 +00:00

Provider: Initial db structure (#1309)

* Initial db structure
This commit is contained in:
Oscar Hinton
2021-05-20 14:39:26 +02:00
committed by GitHub
parent c7f88ae430
commit 61307e11b0
30 changed files with 1414 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
CREATE PROCEDURE [dbo].[ProviderUser_ReadById]
@Id UNIQUEIDENTIFIER
AS
BEGIN
SET NOCOUNT ON
SELECT
*
FROM
[dbo].[ProviderUserView]
WHERE
[Id] = @Id
END