1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-22 12:15:36 +01:00

Merge pull request #790 from bitwarden/bugfix-migrate

fixed syntax error in migration
This commit is contained in:
Matt Portune 2020-06-24 15:48:54 -04:00 committed by GitHub
commit 55e6548dea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,7 +14,7 @@ BEGIN
END
GO
IF EXISTS(SELECT * FROM sys.views WHERE [Name] = 'SsoConfig')
IF EXISTS(SELECT * FROM sys.views WHERE [Name] = 'SsoConfigView')
BEGIN
DROP VIEW [dbo].[SsoConfigView]
END
@ -26,6 +26,7 @@ SELECT
*
FROM
[dbo].[SsoConfig]
GO
IF OBJECT_ID('[dbo].[SsoConfig_ReadByIdentifier]') IS NOT NULL
BEGIN