1
0
mirror of https://github.com/bitwarden/server synced 2026-01-07 11:03:37 +00: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

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