1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-07 10:55:43 -05:00

Merge pull request #791 from bitwarden/sso-migration

Update migration
This commit is contained in:
Matt Portune
2020-06-24 16:18:03 -04:00
committed by GitHub

View File

@ -41,11 +41,12 @@ BEGIN
SET NOCOUNT ON
SELECT TOP 1
*
SSO.*
FROM
[dbo].[SsoConfigView]
WHERE
[Identifier] = @Identifier
[dbo].[SsoConfigView] SSO
INNER JOIN
[dbo].[Organization] O ON O.[Id] = SSO.[OrganizationId]
AND O.[Identifier] = @Identifier
END
GO