1
0
mirror of https://github.com/bitwarden/server.git synced 2025-02-01 23:31:41 +01:00

Update migration

This commit is contained in:
Matt Portune 2020-06-24 16:14:59 -04:00
parent 55e6548dea
commit f471237ce4

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