1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -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
commit bca2a42956
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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