1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 15:42:48 -05:00

requested changes

This commit is contained in:
Matt Portune
2020-06-25 18:06:27 -04:00
parent 39a81af3e9
commit f46023f2f5
5 changed files with 7 additions and 5 deletions

View File

@ -34,7 +34,7 @@ END
GO
CREATE PROCEDURE [dbo].[SsoConfig_Create]
@Id BIGINT,
@Id BIGINT OUTPUT,
@Enabled BIT,
@OrganizationId UNIQUEIDENTIFIER,
@Data NVARCHAR(MAX),
@ -43,6 +43,7 @@ CREATE PROCEDURE [dbo].[SsoConfig_Create]
AS
BEGIN
SET NOCOUNT ON
SET @Id = SCOPE_IDENTITY();
INSERT INTO [dbo].[SsoConfig]
(